@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.container{
    width: 100%;
    min-height: 100vh;
    background: whitesmoke;
    padding: 10px 10%;
    overflow: hidden;
    position: relative;
}

nav{
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.logo{
    font-size: 25px;
    color: lightgreen;
    text-decoration: none;
    font-weight: 600;
    text-transform: lowercase;


}
.logo span{
    color: darkgreen;
    font-weight: 600;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 15px;
}
nav ul li a{
    text-decoration: none;
    color: darkgreen;
    font-size: 17px;
    font-weight: 500;
    transition: 0.5s;
}
nav ul li a:hover{
    font-weight: 700;
    

}
.need-help{
    width: 145px;
    height: 40px;
}
.need-help a{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: lightgoldenrodyellow;
    border: 2px solid darkgreen;
    border-radius: 18px;
    font-size: 15px;
    color: darkgreen;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
    

}
.need-help a:hover{
    font-size: 16px;
    width: 160px;
    height: 110%;
}
.content{
    margin-top: 10%;
    max-width: 540px;
}
.home-content h1{
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    color: darkgreen;
    animation-delay: 1s;

}
.home-content h1 strong{
    font-weight: 700;

}
.home-content h2{
    font-size: 40px;
    font-weight: 500;
    color: darkgreen;
    margin-top: 40px;
    animation-delay: 1.5s;
}

.home-content p{
    font-size:19px;
    color: #006400;
    margin: 20px 0 40px;
    line-height: 1.4;

    animation-delay: 2s;
}
.home-content p.next.anime{
    animation-delay: 2.3s;
}

.mission.anim{
    animation-delay: 2.8s;
}
.home-content p{
    margin-top: 5px;
}
div p.anim{
    animation-delay: 3.1s;
}

img.smile{
    width: 500px;
  
    position: absolute;
    bottom: 43%;
    right: 2%;
    border: 15px solid lightgoldenrodyellow;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 30px;
    animation-delay: 2.5s;

}

img.feel{
    width: 500px;
  
    position: absolute;
    bottom: 20%;
    right: 2%;
    border: 15px solid lightgoldenrodyellow;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 55px;
    z-index: 1;
    animation-delay: 4s;
}
img.talk{
    width: 300px;
    position: absolute;
    bottom: 10%;
    right: 15%;
    border: 5px solid #ededed;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 30px;
    z-index: 2;
    animation-delay: 4.5s;
}
footer{
    border-top: 1px solid darkgreen;
}
footer .home-sci a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid darkgreen;
    border-radius: 50%;
    font-size: 20px;
    color: darkgreen;
    text-decoration: none;
    animation-delay: 1.7s;
    

}
.anim{
    opacity: 0;
    transform: translateY(30px);
    animation: moveup 0.5s linear forwards;
}
.anime{
    opacity: 0;
    transform: translateX(-50px);
    animation: moveside 0.5s linear forwards;
}
.animee{
    opacity: 0;
    transform: translateX(50px);
    animation: moveotherside 0.5s linear forwards;
}


@keyframes moveup{
    100%{
        opacity: 1;
        transform: translateY(0px);

    }
}
@keyframes moveside{
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}
@keyframes moveotherside{
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

