*{
    margin : 0 ;
    padding : 0 ;
    box-sizing: border-box ;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

body{
    background-color: black;
    color: aliceblue;
}

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

.logo{
    font-size: 25px;
    color: white; 
    text-decoration: none;
    cursor : pointer;
    font-weight: 600 ;
    opacity: 0;
    animation: slideRight 1s ease forwards;
}

.navbar a{
    color : white ;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    /* opacity: 0; */
    margin-left: 35px;
    opacity: 0;
    animation: slideTop 1s ease-in-out forwards;
    animation-delay: calc(0.2s* var(--i));
}

.navbar a:hover , .navbar a.active{
    color: blueviolet;
}

.social-media a i{ 
    color: #333;
    font-size: 25px;
    margin: 5px;
}

.home{
    width: 100%;
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 10% 0;
}

.multiple-text{
    font-size: 24px; 
    font-weight: 600;
}


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

.home-img img{
    max-width: 220px;
    border-radius: 50%;
    margin-right: -20px;
    opacity: 0;
    animation: zoomIn 1s ease forwards;
    animation-delay: 1s;
}

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

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

.home-content h3 span{
    color: blueviolet;
}

.home-content h3{
    margin-top: 10px;
    font-size: 25px;
    font-weight: 300;
    max-width: 900px;
    animation: slideLeft 1s ease forwards;
    animation-delay: 1s;
}

.social-media a{
    display: inline-flex;
    width: 60px ;
    height: 60px;
    border: 2px solid rgb(9, 87, 103);
    background: transparent;
    text-decoration: none;
    border-radius: 90%;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgb(9, 87, 103);
    margin: 30px 20px 40px 0;
    transition: 0.5s ease;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: calc(0.2s*var(--i));
}

.btn{
    letter-spacing: 1px;
    display: inline-block;
    color: blueviolet;
    border-radius: 40px;
    padding: 14px 28px;
    box-shadow: 0 0 20px 3px;
    text-decoration: none;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: 1s;
}

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

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

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

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


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

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

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

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

@keyframes zoomIn{
    0%{
        opacity: 0;
        transform: scale(0);
    }

    100%{
        opacity: 1;
        transform: scale(1);
    }
}









































