@import url('https://fonts.googleapis.com/css?family=Teko|Iceland|Cutive+Mono');
@media only screen and (max-width: 600px) {
    :root {
        --template: 1fr 75% 1fr;
    }
}

@media only screen and (min-width: 600px) {
    :root {
        --template: 1fr 60% 1fr;
    }
}

@media only screen and (min-width: 850px) {

}

:root {

    --blue: rgba(78, 199, 247, 1);
    --black: rgba(0, 0, 0, 1);
    --white: rgba(255, 255, 255, 1); 
}

html, body {
    margin: 0px;
    padding: 0px;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.background {
    z-index: 1;
    position: fixed;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: var(--template);
    justify-items: stretch;
    align-items: stretch;
    justify-content: stretch;
    align-content: stretch;
    width: 100%;
    height: 100%;
}

.background_top, .background_bottom {
    background-color: var(--blue);
}

.background_top {
    grid-column: 1/13;
    grid-row: 1/2;
}

.background_middle {
    grid-column: 1/13;
    grid-row: 2/3;
}

.background_bottom {
    grid-column: 1/13;
    grid-row: 3/4;
}

.container {
    z-index: 3;
    position: fixed;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: var(--template);
    justify-items: stretch;
    align-items: stretch;
    justify-content: stretch;
    align-content: stretch;
    height: 100%;
    width: 100%;
}

.header {
    grid-column: 1/13;
    grid-row: 1/2;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-content: flex-start;
    align-items: flex-start;
}

.headerleft, .headerright {
    flex-grow: 1;
    flex-shrink: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    height: 100%;
    flex-basis: 200px;
}

.headercenter {
    flex-grow: 3;
    flex-shrink: 1;
    height: 100%;
    flex-basis: 400px;
}

.headerleft img {
    max-width: 200px;
}

.content {
    grid-column: 1/13;
    grid-row: 2/3;
    padding: 20px;
    text-align: justify;
}

.footer {
    grid-column: 1/13;
    grid-row: 3/4;
}