#home {
display: flex;
align-items: center;
justify-content: space-between;
padding: 100px 15px;
}

#home h1 {
font-size: 3rem;
margin-bottom: 15px;
}

#home h1 span {
color: #9333ea;
}

#home h3 {
font-size: 2rem;
margin-bottom: 20px;
color: #ccc;
}

#home h3 span{
color: #9333ea;
}

#home p {
font-size: 1.2rem;
margin-bottom: 30px;
}

#home img {
max-width: 40%;
height: auto;
margin-top: 30px;
margin-right: 30px;
margin-left: 30px;
border-radius: 5%;
transition: transform 0.3s;
background-color: #111;
border: 1px solid #343a40;
box-shadow: 0px 0px 10px #000;
object-fit: cover;
object-position: center;
opacity: 0.8;
}

#home img:hover {
transform: scale(1.02);
border: 2px solid #2564ebab;
box-shadow: 2px 2px 20px #cc01ff83;
transition: all ease-in-out 0.3s;
opacity: 1;
}

@media (max-width: 768px) {
    #home {
        flex-direction: column;
        text-align: center;
    }

    #home img {
        max-width: 100%;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .btn{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar-toggler {
        background-color: #cc01ff;
        border: none;
    }

    .navbar-toggler-icon{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        flex-direction: column;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }
}