html {
    /* font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
}

/* <<<<<<<<<<<< GENERAL TEXT FORMATTING */
h1, h2, h3 {font-weight: 600; }
h1 {font-size: 2rem;}
h2 {font-size: .8rem;}

/* <<<<<<<<<<<<<<<< BODY LAYOUT */
.body-wrapper {
    max-width:  95%;
    min-height: 320px;
    margin: 5% auto;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, .3);
    padding:    1rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5,1fr);
    flex-flow: column nowrap;
    text-align: center;
}
.body-wrapper > * {width: 100%;}
.logo {display: none;}

/* <<<<<<<<<< KEY HEADER LAYOUT */
header {
    grid-row: 1 / span 5;
    grid-column: 1 / span 5;
    align-self: flex-start;
    display: flex; 
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: flex-start;
}
header h1 {font-size: 1.5rem}
header h2 {
    position: relative;
    top: 1rem;
    transform: rotate(-90deg);
    transform-origin: center 140px;
}
.key-header_background {
    background: url(../images/maker.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    grid-row: 4 / span 2;
    grid-column: 1 / span 2;
    width: 100%;
    height: 100%;
 
}


.accentText {color: rgb(250, 51, 51); text-transform: lowercase;}
