@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
#body{
    height: 100vh;
    background: linear-gradient(135deg,#4e65ff,#92EFFD);
    color: white;
    max-width: 1200px;
    margin: auto;
}
.logo h1{
    font-size: 45px;
    cursor: pointer;
    
}
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 20px;
    transition: all 3s linear;
}
nav a{
    text-decoration: none;
    font-size: 18px;
    color: white;
    border: 1px solid white;
    padding: 3px 5px;
}
nav a:hover{
    font-size: 19px;
    color: rgb(39, 64, 85);
    border-color: rgb(39, 64, 85);;
}
.hero-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 100px auto;
    gap: 20px;
}
h2{
    font-size: 40px;
}
h4{
    font-size: 32px;
}
h4 span{
    color: #101a5d;
    border-bottom: 1px solid #101a5d;
}
.mail{
    font-size: 20px;
    text-decoration: none;
}
p{
    font-size: 20px;
}
.mail:hover{
    border-bottom: 1px solid blue;
    color: #334ade;

}
.contact-section h2{
    margin: 18px 0;
}
.form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid white
   
    
}
.form input, textarea{
    font-family: "Quicksand", sans-serif;
    padding: 8px 5px;
    font-size: 16px;
    background-color: rgb(228, 240, 243);
    border: none;
    outline: none;
    width: 400px;
}
button{
    padding: 10px 25px;
    font-weight: bold;
    font-size: 16px;
    outline: none;
    border: none;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    cursor: pointer;
}
button:hover{
    color: rgb(39, 64, 85);
    background-color: #bdece6;
    border: 1px solid black;

}
@media(max-width:668px){
    .header{
        margin: 8px 5px;
    }
    .logo h1{
        font-size: 25px;
    }
    .form input, textarea{
        width: 80%;
    }
    .hero-section{
        margin: 60px auto;
    }
    h2{
        font-size: 22px;
    }
    h4{
        font-size: 18px;
        padding: 0 5px;
    }
}