* {
    margin: 0;
    padding: 0;
}

html {
    background: url(images/earthrise.jpg) no-repeat left center fixed;
    background-color: black;
    background-size: cover;
    scrollbar-color: dark;
    overflow: hidden;
}

#top,
#bottom,
#left,
#right {
    background: #000000;
    position: fixed;
}
#left {
    top: 0;
    bottom: 0;
    width: 15px;
}
#right {
    top: 0;
    bottom: 0;
    width: 15px;
}
#left {
    left: 0;
}
#right {
    right: 0;
}

#top,
#bottom {
    left: 0;
    right: 0;
    height: 15px;
}
#top {
    top: 0;
}
#bottom {
    bottom: 0;
}

@font-face {
    font-family: "Gotham Narrow";
    font-style: normal;
    font-weight: 500;
    src:
        local("Gotham Narrow"),
        url("fonts/GothamNarrow.otf") format("opentype");
}

.nav {
    float: right;
    padding-top: 10px;
    padding-right: 15px;
    font-family: "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-align: right;
}

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

.nav a:hover {
    color: white;
    text-decoration: underline;
}

.title {
    float: left;
    padding-left: 15px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-family: "Gotham Narrow", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 500;
    color: white;
}

.container {
    flex: 1;
}

.scroll-container {
    display: flex;
    min-height: fill-available;
    flex-direction: column;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

.scroll-container::-webkit-scrollbar {
    /* WebKit */
    width: 0;
    height: 0;
}

body > .scroll-container {
    width: 100vw;
    height: 100vh;
    height: fill-available;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* enables “momentum” (smooth) scrolling */
}

.footer {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    height: 40px;
    text-align: center;
}

.footer-nav {
    font-family: "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    background-color: black;
    padding: 2px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
}

.footer-nav a:hover {
    color: white;
    text-decoration: underline;
}

a {
    color: white;
}

a:hover {
    color: orange;
}

/* Narrow */
@media only screen and (max-width: 1024px) {
    html {
        background-position: center top;
    }

    .title {
        width: 100%;
        font-size: 16vw;
        padding-top: 10px;
    }
}

/* Wide */
@media only screen and (min-width: 1025px) {
    .title {
        width: 50%;
        font-size: 10vw;
        padding-top: 0px;
    }
}

/* Phones */
@media only screen and (max-width: 767px) {
    .content-container {
        margin-left: 40px;
        margin-right: 40px;
        margin-top: 40px;
        margin-bottom: 20px;
        background-color: black;
        flex: 1;
    }

    .nav {
        display: none;
    }
}

/* Normal */
@media only screen and (min-width: 768px) {
    .content-container {
        margin: 20px;
        background-color: transparent;
    }

    .footer {
        display: none;
    }
}
