@font-face {
 font-family: 'MaisonNeue-Bold';
 src: url("fonts/MaisonNeueWEB-Bold.woff") format('woff');
}
@font-face {
 font-family: 'MaisonNeue-Demi';
 src: url("fonts/MaisonNeueWEB-Demi.woff") format('woff');
}
@font-face {
 font-family: 'MaisonNeue-Book';
 src: url("fonts/MaisonNeueWEB-Book.woff") format('woff');
}


html, body {
    background-color: black;
    font-family: 'MaisonNeue-Bold', Helvetica, Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

p, a, a:hover, a:visited, a:active {
    color: white;
    margin: 0;
    padding: 0;
}

.footer {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: center;
    padding: 20px 0;
}

.footer > p {
    margin: 0 10px;
}