body {
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

header {
    background-color: #30cac8;
    display: flex;
}

.logo {
    position: relative;
    z-index: 10;
    padding: 20px;
}

.logo a {
    display: block;
}

.logo * img {
    height: 100px;
}

.title-row h1 {
    display: inline-block;
    border: 5px solid #3c3c3b;
    line-height: 50px;
    padding: 15px;
    font-size: 50px;
    font-family: 'Oswald', Sans-Serif, sans-serif;
    font-weight: normal;
    color: #3c3c3b;
    text-transform: uppercase;
}

.content {
    padding: 30px 0;
    background-color: #e5e6e6;
}

.content h1 {
    position: relative;
    left: 10px;
    color: #fff;
    line-height: 52px;
    font-weight: 300;
    display: inline;
    font-size: 30px;
    padding-bottom: 4px;
    padding-top: 2px;
    background-color: #30cac8;
    -moz-box-shadow: 10px 0 0 #30cac8, -10px 0 0 #30cac8;
    box-shadow: 10px 0 0 #30cac8, -10px 0 0 #30cac8;
}

.content h1:after {
    display: block;
    content: ' ';
    height: 30px;
}

.content a {
    color: #30cac8;
    font-weight: 500;
}

.content a:hover {
    text-decoration: none;
}

.content code {
    margin: 0 2px;
    padding: 0px 5px;
    border: 1px solid #ddd;
    background-color: #f8f8f8;
    border-radius: 3px;
}

.footer {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .left {
    width: 50%;
    background-color: #474746;
    height: 268px;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
}

.footer .left h2 {
    font-family: 'Oswald', Sans-Serif, sans-serif;
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.footer .left a {
    color: white;
    text-decoration: none;
}

.footer .left a:hover {
    color: #a6a6a6;
}

.footer .right {
    width: 50%;
    background-color: #5b5b5b;
    text-align: center;
    padding-top: 80px;
    height: 268px;
}

.content ul {
    margin-left: 0;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
    }
    .footer {
        flex-direction: column;
    }

    .footer .left {
        width: 100%;
    }
    .footer .right {
        width: 100%;
    }
}
