@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");
*{
    margin: 0;
    padding: 0;
    border: border-box;
}
html,body{
    line-height: 1.4;
    font-weight: 300;
    font-family: "Robotto",sans-serif;
    scroll-behavior: smooth;
}
header{
    background:#d5def5;
    top: 0;
    position: sticky;
    z-index: 50;
}
nav{
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}
.nav-content ul li{
    list-style: none;
    color: #6643b5;
    font-size: 20px;
    padding-top: 10px;
    font-weight: 600;
    border-bottom: 3px solid transparent;
}
.nav-content ul li:hover{
    border-bottom: 3px solid white;
    transition: 0.3s ease-in-out;
}
.nav-content a{
    text-decoration: none;
}
.nav-content ul{
    display: flex;
    align-items: center;
    gap: 20px;
    
}
.logo img{
    width: 45px;
    background: #E7DDFF;
    margin-bottom: 5px;
}
.logo span{
    font-size: 24px;
    font-weight: 500;
    color:#53A134;
}
.container a{
    text-decoration: none;
}
@media (max-width:430px){
 
    span h1{
    font-size: 15px;
}

}