﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, a {
    font-style: italic;
    color: #DEC328;
}

h1,h2,h3,h4{
    padding: 2px;
}

body {
    min-height: 99vh;
    background: #000;
    background-size: cover;
    background-position: center;
}

.logo {
    margin: 10px;
    margin-bottom: 0;
    padding: 0;
}

.flex-container {
    height: 80vh;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    justify-content: safe center;
    margin-top: 1vh;
    flex-direction: column;
}

.message {
    display: flexbox;
    margin: 0 auto;
    text-align: center;
    padding: auto;
}

.font1 {
    font-family: oswald-medium,oswald,sans-serif;
}

.font2 {
    font-family: oswald-extralight, oswald, sans-serif;
    font-weight: 400;
}

.font2-noitalic {
    font-family: oswald-extralight, oswald, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.font3 {
    font-family: proxima-n-w01-reg, proxima-n-w05-reg, sans-serif;
}

.row-flex-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    justify-content: safe center;
    flex-direction: row;
    flex-wrap: wrap;
}

.align-left {
    text-align: left;
}

@media screen and (max-width: 1014px) {
    .align-left {
        text-align: center;
    }
}