@font-face {
    font-family: "SourceSansPro";
    src: url('../font/SourceSansPro.otf') format('opentype');
}

html,
body {
    font-family: "SourceSansPro";
    margin: 0;
    padding: 0;
    font-size: 16px;
    word-break: break-word;
    line-height: 1.5;
    background: #eee8da;
    color: #212121;
    text-align: center;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


/* -- Page, Section Styles -- */

#page {
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.container {
    max-width: 1200px;
    margin: -100% auto 0;
    padding: 0 15px;
}

img {
    max-width: 100%;
}