body {
    background-color: #eaeaea;
    color: #233241;
    font-family: Lato, sans-serif;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

.header {
    height: 148px;
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    width: 320px;
    height: 100%;
    max-width: 100%;
    display: block;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.content {
    width: 100%;
    min-height: calc(100vh - 218px);
    position: relative;
    padding: 30px;
}

.footer {
    background-color: #eaeaea;
    color: #233241;
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 70px;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    width: 100%;
}

.footer a {
    color: #233241;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.weird {
    height: 100%;
    background-color: #111;
    color: #fff;
    background-size: cover;
    background-position: 50%;
    background-image: url(/assets/weird.gif);
}