HTML {
    font-size: 1.7em;
}
BODY {
    background-color: #424241;
    margin: 0;
    padding: 0;
    display: grid;
    text-size-adjust: none;
}

DIV {
    color: #fff2e6;
    font-family: Helvetica;
    text-size-adjust: none;
    cursor: default;
}

UL {    
    line-height: 1em;
    margin: 0px;
    margin-block-end: 0em;
    margin-block-start: 0em;
}

INPUT, TEXTAREA {
    background-color: #424241;
    color: #fff2e6;
    padding: 0.3em;
    margin: 0.3em;
    font-size: 1rem;
}

.main-grid {
    display: grid;
    grid-template-rows: 150px 1fr 150px;
    margin: auto;
    background-color: #0e0702;
    box-shadow: 3px 3px 10px 0px #000000A0;
    min-height: calc(100vh - 20px);
    row-gap: 1rem;
    max-width: 1500px;
    width: 100vw;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-self: left;
    align-items: center;
    width: 100%;
}

.menu-item {
    font-size: 1rem;
    justify-self: center;
    padding: 0rem;
    margin: 1rem 0rem 1rem 0rem;
    border-bottom: 3px solid #0e0702;
    text-align: center;
    user-select: none;
}

.menu-logo {
    padding: 1rem;
    text-align: center;
}

.menu-logo > a > img {
    border: 0;
    height: 4rem;
}

.menu-item.active {
    border-bottom: 3px solid #b6aea6;
}

.menu-item:hover {
    border-bottom: 3px solid #fff2e6;
    cursor: pointer;
}

.menu-item > a {
    display: block;
    padding: 1rem;
    color: #fff2e6;
    text-decoration: none;
}

.image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.image.banner {
    height: 20vh;
}

.image.spaced {
    margin-top: 2rem;
}

.image.stacked {
    margin-top: 0;
}

.image.banner.style-text {
    height: calc(20vh - 6rem);
    padding-top: 6rem;
    padding-left: 3rem;
    margin-bottom: 0rem;
    font-size: 5rem;
}

.headline-text {
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-weight: bold;
    font-family: 'ostrich';
}

.main-headline {
    clear: both;
    font-size: 2rem;
    line-height: 1.5em;
    padding: 2rem 2rem 0rem 2rem;
    color: #ccb5a0;
}

.main-article {
    padding: 0rem 2rem 0rem 2rem;
    color: #fff2e6;
} 

.main-article > a, li > a {
    color: #b6aea6;
}
.content-text {
    line-height: 2em;
    letter-spacing: 0.1em;
    font-size: 1rem;
    font-family: 'bebas';
    margin-bottom: 1rem;
}

.style-text {
    font-family: 'blacksword';
    letter-spacing: 0.05em;
    color:#fff2e6;
}

.footer {
    font-size: 0.7rem;
    text-align: center;
    line-height: 2rem;
    padding: 1rem;
    border-top: 5px solid #796f65;
    font-family: 'bebas';
    letter-spacing: 0.02em;
}

.footer > a {
    color: #fff2e6;
    text-decoration: none;
}

.footer > a:hover {
    color: #b6aea6;
}



/* PHONE - PORTRAIT */
@media only screen and (max-width: 1000px) and (orientation: portrait) {
    .content-text {
        font-size: 1.5em;
    }
}

/* PHONE - LANDSCAPE */
@media only screen and (max-width: 1000px) and (orientation: landscape) {
    .content-text {
        font-size: 1em;
    }

    .image.banner.style-text {
        height: calc(45vh);
        padding-top: 0.7rem;
    }
}

/* COMPUTER */
@media only screen and (min-width: 1000px) {
    BODY {
        padding-left: calc(100vw - 100%);
    }
    .image.banner.style-text {
        height: calc(20vh - 2rem);
        padding-top: 2rem;
    }
}