/* Global styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

header {
    width: 100%;
    height: 100vh;
    color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
    z-index: -1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(3.5px);
    -webkit-backdrop-filter: blur(3.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: fixed;
    top: 0;
    left: 0;
}

ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

li {
    list-style: none;
    font-weight: bold;
    cursor: pointer;
    padding: 25px 40px;
}

a {
    color: white;
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: bold;
    padding: 0 30px;
    text-decoration: none;
}

h1 {
    font-size: 6rem;
    text-shadow: 0 0 20px black;
    text-align: center;
}

main {
    background-color: #000009;
    color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 20px;
}

p {
    padding: 30px;
}

h3 {
    font-size: 2rem;
    margin-left: 30px;
}

h2 {
    font-size: 3rem;
    padding: 30px;
}


/* ------------------------------------------------------------- */


/* Scroll Indicator */

.indicator-container {
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.indicator-bar {
    height: 100%;
    width: 0;
    background-color: #ffe80e;
    box-shadow: 0 0 15px rgb(255, 229, 33), 0 0 10px rgb(255, 229, 33);
}


/* ------------------------------------------------------------- */