* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body {
    color: #ededed;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    position: relative;
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
    opacity: 0;
    animation: slideRight 1s ease forwards;
}

.navbar a {
    display: inline-block;
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: 1s;
    opacity: 0;
    animation: slideTop .7s ease forwards;
    animation-delay: calc(.2s * var(--i));
}
.navbar a.active {
    color: #0ef;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #0ef;
  }
  
  .hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0ef;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    text-underline-position: under;
  }
  
  .hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
    text-underline-position: under;
  }

.navbar a:hover{
    color: #0ef;
}

.home {
    position: relative;
    width: 100%;
    justify-content: space-between;
    height: 100vh;
    background-color: #081b29;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10% 0;
}

.home-content {
    max-width: 600px;
}

.home-content h3 {
    font-size: 32px;
    font-weight: 700;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: .5s;
}

.home-content h3:nth-of-type(2) {
    margin-bottom: 30px;
    animation: slideTop 1s ease forwards;
    animation-delay: .7s;
}

.home-content h3 span {
    color: #0ef;
}

.home-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin: -3px 0;
    /* opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: 1s; */
}

.name {
    display: flex;
}
.V{
    opacity: 0;
    animation: slideLefts 1.5s ease forwards;
    animation-delay: 1s;
}
.L{
    opacity: 0;
    animation: slideLeftss 1.5s ease forwards;
    animation-delay: 1s;
}
.eela{
    opacity: 0;
    animation: slideRights 1.5s ease forwards;
    animation-delay: 1s;
}
.aran{
    opacity: 0;
    animation: slideRights 1.5s ease forwards;
    animation-delay: 1s;
}

.home-content p {
    font-size: 20px;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: 1s;
}

img {
    margin-top: -100px;
    margin-left: 100px;
    border-radius: 50%;
    width: min(25rem, 300px);
    height: 300px;
    animation: slideLeft 1s ease forwards;
    animation-delay: .5s;
    opacity: 0;
}

.home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 50%;
    font-size: 20px;
    color: #0ef;
    text-decoration: none;
    transition: .5s ease;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: calc(.2s * var(--i));
    margin: 30px 15px 30px 0;
}

.home-sci a:hover {
    background: #0ef;
    color: #081b29;
    box-shadow: 0 0 20px #0ef;
}

.btn-box {
    display: inline-block;
    padding: 12px 28px;
    background: #0ef;
    font-size: 16px;
    border-radius: 40px;
    color: #081b29;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: 2s;
    box-shadow: 0 0 5px #0ef,
        0 0 25px;
}

.btn-box:hover {
    transition: all .5s;
    box-shadow: 0 0 5px cyan,
        0 0 25px cyan, 0 0 50px cyan,
        0 0 100px cyan, 0 0 200px cyan
}

.copyr{
    position: relative;
    margin-top: -50px;
    display: flex;
    justify-content: center;
    animation: showUp 1s ease forwards;
    animation-delay: 3s;
    opacity: 0;
}

@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes slideRights {
    50% {
        transform: translateX(-100px);
        opacity: 0;
    }
    70%{
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes slideLefts {
    0% {
        transform: translateX(300px);
        opacity: 0;
    }

    50% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}
@keyframes slideLeftss {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    50%{
        transform: translateX(-200px);
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes slideTop {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}


@keyframes slideBottom {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes showUp {
    0%{
        opacity: 0;
    }

    100%{
        opacity: 1;
    }
}
@media (width <900px){
    .logo{
        display: none;
    }

    .header {
        position: fixed;
        width: 100%;
        background: #081b29;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 100;
    }

    .navbar a {
        display: inline-block;
        font-size: 25px;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        margin-left: 10px;
        margin-right: 10px;
        transition: 1s;
        opacity: 0;
        animation: slideTop .7s ease forwards;
        animation-delay: calc(.2s * var(--i));
    }

    .home{
        position: absolute;
        width: 100%;
        height: 110vh;
        background-color: #081b29;
        background-size: cover;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
    }

    .home-content div.name{
        display: flex;
        justify-content: center;
    }

    .home-content h1 {
        font-size: 30px;
        font-weight: 700;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    section{
        padding: 10rem 1rem 5rem 1rem;
        text-align: center;
        grid-template-columns: repeat(1, 1fr);
    }

    .image{
        order: -1;
        margin-left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    @keyframes slideLeftss {
        0% {
            transform: translateX(100px);
            opacity: 0;
        }
    
        50%{
            transform: translateX(-105px);
        }
    
        100% {
            transform: translateX(0px);
            opacity: 1;
        }
    }
    @keyframes slideLefts {
        0% {
            transform: translateX(200px);
            opacity: 0;
        }
    
        50% {
            transform: translateX(0px);
        }
    
        100% {
            transform: translateX(0px);
            opacity: 1;
        }
    }
}

@media (width <750px){
    .navbar a {
        display: inline-block;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        margin-left: 10px;
        margin-right: 10px;
        transition: 1s;
        opacity: 0;
        animation: slideTop .7s ease forwards;
        animation-delay: calc(.2s * var(--i));
    }
    .image{
        order: -1;
        margin-top: 20px;
        margin-left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .home{
        position: absolute;
        width: 100%;
        height: 110vh;
        background-color: #081b29;
        background-size: cover;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
    }
}
@media (width <380px){
    .home{
        position: absolute;
        width: 100%;
        height: 130vh;
        background-color: #081b29;
        background-size: cover;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
    }
}