@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;
    animation-delay: 0.5s;
}
.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 p{
    font-size: 17px;
    color: #006400;
    margin: 20px 0 40px;
    line-height: 1.2;
    animation-delay: 1.5s;

}

.home-sci{
    position: absolute;
    bottom: 40px;
    width: 170px;
    display: flex;
    justify-content: space-between;
    
}

.home-sci a.anim{
    /* position: relative; */
    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;
    

}
.home-sci a.anim.twitter{
    animation-delay: 2s;
}
.home-sci a.anim.linkedin{
    animation-delay: 2.3s;
}


.home-sci a:hover{
    background: darkgreen;
    color: #ededed;
}
.feature-img{
    width: 400px;
    height: 60%;
    position: absolute;
    bottom: 10%;
    right: 10%;
    border: 15px solid lightgoldenrodyellow;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 50px;

}
.feature-img.animee{
    animation-delay: 2.5s;
}
.anim{
    opacity: 0;
    transform: translateY(30px);
    animation: moveup 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 moveotherside{
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

@media only screen and (max-width: 1200px) {
    
}
