@import url('https://fonts.googleapis.com/css2?family=Anek+Gujarati:wght@100..800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Anek Gujarati', sans-serif;
    font-weight: 300;
    background-color: #F5F5F5;
    color: #000000;
    line-height: 1.6;
    padding: 50px;
}

h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 10px;
}

h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
}

.sleft {
    animation: slide-left 2s;
}

h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;

    animation: slide-left 2s;
}

p {
    font-size: 18px;
    font-weight: 200;
    line-height: 1.8;

    
}
.slide {
    animation: slide-right 1.5s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    
    
}

a {
    text-decoration: none;
    color: black;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a:hover {
    color: #5C5C5C;
    animation: bounce 0.8s ease-in infinite alternate;
}

.emphasis {
    animation: emphasis 2s;
}


section {
    padding: 20px;
    margin: 30px;
    background-color: grey;
    border-radius: 12px;
}

.rotate {
    animation: fade-rotate 2s;
}

.drop {
    animation: drop-down 2s ease-out;
}


@keyframes opening {
    0%{
        height: 0;
        opacity: 0;
    }

    75%{
        opacity: 0;
    }

    100%{
        height: 100;
        opacity: 1;
    }
}


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

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

@keyframes slide-right {
    0%{
        transform: translateX(500px);
        opacity: 0;
    }

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

}

@keyframes fade-rotate {
    0%{
        opacity: 0;
        transform: rotate3d(0, 1, 0, 0deg);
    }

    100%{
        opacity: 1;
        transform: rotate3d(0, 1, 0, 360deg);
    }

}

@keyframes bounce {
  0%{
    transform: translateY(0); 
  }
  100% {
    transform: translateY(-9px); 
  
  }
}

@keyframes emphasis{
    0%{
        transform: translateY(0)
    }

    100%{
        box-shadow: 0px 10px 13px -7px #000000, 0px 5px 15px 5px rgba(0,0,0,0);
        transform: translateY(-10)
    }
}

@keyframes drop-down {
    0%{
        transform: translateY(-200px);
        opacity: 0;
        
    }

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