* {
    padding: 0;
    margin: 0;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 24px;
}

#navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0);
    position: fixed;
    top: 0;
    z-index: 99; 
    opacity: 0%;
    animation: navbarFade 1s forwards;
    animation-delay: .6s;
    transition: background-color 0.25s ease-in-out;
}

@keyframes navbarFade {
    from {
        opacity: 0%;
    }

    to {
        opacity: 100%;
    }
}

#navbar li {
    float: left;
    padding: 25px;
    margin: auto;
    text-align: center;
    color: white;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

#navbar li:hover {
    background-color: #383fff;
    transition: background-color 0.25s ease-in-out;
}

header {
    width: 100%;
    margin: auto;
    text-align: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
    top: 0;
    z-index: 1;
}

.header-img {
    width: 100%;
    position: relative;
    z-index: 1;
}


header h1 {
    font-size: 10rem;
    z-index: 2;
    position: absolute;
    bottom: 0%;
    text-align: center;
    width: 100%;
    color: white;
    opacity: 0%;
    animation: fadeIn 1s forwards;
    animation-delay: .2s;

}

@keyframes fadeIn {
    from {
        bottom: 0%;
        opacity: 0;
    }
    to {
        bottom: 5%;
        opacity: 1;
    }
}

section {
    opacity: 0;
    padding-top: 500px;
    animation: fadeSection 1s forwards;
    animation-timeline: view();
    animation-range: entry 20% cover 21%;
}

@keyframes fadeSection {
    from {
        padding-top: 500px;
        opacity: 0;
    }
    to {
        padding-top: 50px;
        opacity: 1;
    }
}

h2 {
    text-align: center;
    font-size: 3rem;
}

p {
    padding: 5% 10%;
    font-size: 1rem;
    font-weight: lighter;
    text-indent: 20px;
}

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