* {
    font-family: 'Courier New', Courier, monospace;
}

#mainer {
    width: 80%;
}

body {
    background-color: black;
    color: white;
    margin: 0;
    padding: 3vh 0;
    display: flex;
    justify-content: center;
    min-height: 94vh;
}

#main {
    display: flex;
    flex-direction: row;
    min-height: 70vh;
}

#nav {
    display: flex;
    flex-direction: column;
    width: 20%;
}

#content {
    width: 80%;
}

#nav,
#content,
#footer {
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.7);
    margin: 10px;
}

#footer {
    text-align: center;
    margin-top: 15px;
    padding: 15px 0;
}

#header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 11vh;
    margin-bottom: 15px;
}

.release img {
    width: 100px;
    margin-bottom: 1vh;
}

.release {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    outline: 2px solid rgba(255, 255, 255, 0.1);
    margin: 10px;
    padding: 10px;
    width: 167px;
    height: 167px;
}

.release:hover {
    outline: 2px solid rgba(255, 255, 255, 0.8);
}

.release p {
    margin: 0;
    text-align: center;
}

.releaseContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
}

#nav a {
    text-decoration: none;
    color: rgb(197, 181, 130);
}

.about a {
    color: rgb(186, 155, 204) !important;
}

.releases a {
    color: rgb(204, 122, 147) !important;
}

.images a {
    color: rgb(214, 155, 132) !important;
}

.link {
    text-decoration: none;
    color: rgb(204, 122, 147);
}

#nav a:hover,
.link:hover {
    text-decoration: underline;
    filter: brightness(1.4);
}

.releasePage p {
    margin: 2px auto;
}

.releaseNav {
    font-size: 0.72em;
    filter: hue-rotate(-15deg);
}

.image {
    width: 300px;
    margin: 10px;
}

.image:hover {
    cursor: pointer;
    opacity: 0.9;
    outline: 2px solid white;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    width: 100vw;
    height: 100vh;
}

.newsPost {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
}

@media only screen and (max-width: 500px) {
    body {
        align-items: center;
        background-size: auto 100vh !important;
    }

    #mainer {
        width: 90%;
    }

    #main {
        flex-direction: column;
        width: 100%;
    }

    #nav,
    #content {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    #nav {
        text-align: center;
        align-items: center;
    }

    .noMobile {
        display: none;
    }
}