body {
    background-color: black;
}

.nav {
    width: 100%;
    background-color: black;
}

ul li a {
    font-family: 'Courier New', Courier, monospace;
    color: bisque;
    text-decoration: none;
    list-style: none;
}
ul li {
    list-style: none;
    display: flex;
    gap: 5rem;
}

main {
    border: 2px solid red;
    width: 100%;
    height: 100vh;
}

main h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS',
        sans-serif;
    color: antiquewhite;
    font-size: 1.5rem;
}

.load-container {
    background-color: #070f19;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
    pointer-events: none;
    z-index: 9999999;
}
