body {
    background-color: #303841;
    margin: auto 0;
    font-family: 'Courier New', Courier, monospace;
    color: #f3f3f3
}

.raw-zone {
    color: #f3f3f3;
    font-size: 1em;
    border-radius: 4px;
    transition: all 0.3s linear;
}

.zone {
    color: #f3f3f3;
    font-size: 2em;
    border-radius: 4px;
    transition: all 0.3s linear;
}

.special-zone {
    color: #f3f3f3;
    transition: all 0.3s linear;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.zone:hover, .special-zone:hover {
    -webkit-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
    -moz-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
    -o-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
    box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
}

/* NAV */
.main-nav {
    display: flex;
    list-style: none;
    font-size: 0.7em;
    margin: 0;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.push {
    margin-left: auto;
}

li {
    padding: 20px;
    margin-right: 10px
}

a {
    color: #f3f3f3;
}

/* COVER */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: no-wrap;
    height: 50vh;
}

.cover {
    /* width: 60rem; */
    width: 60rem;
    text-align: center;
}

.raw-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: no-wrap;
}

.raw-container > h2 {
    margin-top: 15vh;
}

.raw-container > .break {
    margin: 30vh;
}

/* GRID */
.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-template-rows: auto;
    gap: 20px;
}

.box > img {
    max-width: 100%;
}

a > img {
    max-width: 100%;
}

header {
    color: #f3f3f3;
    font-size: 2em;
    border-radius: 4px;
    border: 1px solid #303841;
    transition: all 0.3s linear;
}

footer {
    text-align: center;
    padding: 1px;
    margin-top: 5px;
}

address > ul > li {
    padding: 0;
}

div > img {
    max-width: 80vw;
}

@media only screen and (max-width: 812px) {
    .main-nav {
        font-size: 0.5em;
        padding: 0;
    }

    .cover {
        max-width: 100vw;
    }

    .grid-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 48vw));
        grid-template-rows: auto;
        gap: 0;
    }

    .raw-zone {
        font-size: 1em;
    }
}

.pushable{
    background: #3a4750; /* Old browsers */
    background: -moz-linear-gradient(top, #3a4750 0%, #303841 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3a4750), color-stop(100%,#303841)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #3a4750 0%,#303841 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #3a4750 0%,#303841 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #3a4750 0%,#303841 100%); /* IE10+ */
    background: linear-gradient(top, #3a4750 0%,#303841 100%); /* W3C */
}

.small-text {
    font-size: 0.75rem;
}