img{
    width: 200px;
    display: flex;
    background-color: transparent;
}

a{
    text-decoration: none;
}

nav{
    max-width: 1200px;
    margin: auto;
    padding: 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: auto;

}

.nav-logo{
    max-width: 100px;
}

.nav-links{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.link a{
    position: relative;
    padding-bottom: 0.75rem;
    color: #fff;
}

.link a::after{
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: var(--main-color);
    transition: all 0.3s ease;
}

.link a:hover::after{
    width: 80%;
}

.contact_button{
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #fff;
    background-color: rgb(84, 125, 239);
    border-radius: 20px;
    cursor: pointer;
    transition: transform .2s;
    font-family: "Figtree";

}

.contact_button:hover{
    background-color: rgb(70, 210, 228);
    transform: scale(1.1);
}


.container{
    max-width: 1200px;
    margin: auto;
    padding: 5rem 2rem;
    display: flex;
}

.contact_container{
    display: flex;
    justify-content: center;
}

.blur{
    position: absolute;
    box-shadow: 0 0 1000px 50px #2cd8ff;
    z-index: -100;
}

header{
    position: relative;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;


}


header .content h3{
    margin-bottom: 1rem;
    font-size: 2rem;
    color: rgb(91, 191, 204);
    font-weight: 600;

}

@keyframes colorchange {
    0% {
      color: rgb(0, 208, 255);
    }
    100% {
      color: #ccdbdb;
    }
}

header .content h1{
    color: rgb(41, 167, 251);
    margin-bottom: 1rem;
    font-size: 4.5rem;
}

header .animated_font{
    animation: colorchange 1s infinite alternate;
}


header .content p{
    margin-bottom: 1em;
    text-align: left;
}


.content{
    max-width: 700px;
}


.contact_button2{
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #fff;
    background-color: rgb(84, 125, 239);
    border-radius: 20px;
    cursor: pointer;
    transition: transform .2s;
    font-family: "Figtree";

}

.contact_button2:hover{
    background-color: rgb(70, 210, 228);
    transform: scale(1.1);
}

.image img{
    width: 400px;
    box-shadow: rgb(220, 85, 85) 0px 5px 15px;
}

.image img:hover{
    box-shadow: rgb(220, 85, 85) 0px 5px 30px;
}




@media(max-width: 895px){
    .container{
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links{
        display: none;
    }
    .nav-logo img{
        max-width: 150px;
    }
    .contact_button{
        max-width: 150px;
    }
    .content{
        text-align: center;
    }
    .image img{
        max-width: 250px;
    }
    header .content h3{
        font-size: 25px;
    }
    header .content h1{
        font-size: 60px;
    }
    header .content p{
        text-align: center;
    }
    header{
        gap: 3rem;
    }
}

