body {
    margin: 0;
    padding: 0;
    font-family: karla, sans-serif;
    font-size: 20px;
    color: #797B80;
    line-height: 1.5;
    background-color: #1B1E24;
    -webkit-text-size-adjust: 100%;
}

h1,h2,h3 {
    margin: 0;
    color: #1B1E24;
}

h2 {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: -0.5px;
}

* {
    box-sizing: border-box;
}

.header {
    background-color: #1B1E24;
    padding: 40px;
    position: relative;
    height: 750px;
}

.constrainer {
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    width: 268px;
    height: 125px;
    margin-top: 170px;
    /* position: relative; */
}

.strapline {
    color: white;
    font-size: 32px;
    margin-top: 100px;
    font-weight: 300;
    margin-left: 72px;
    max-width: 500px;
    /* position: relative; */
}

.pixels {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.section {
    border-bottom: 1px solid #CBCDD2;
    background-color: white;
}

.section .constrainer {
    padding: 60px 100px 60px 25px;
    display: flex;
}

.section--dark {
    background-color: #1B1E24;
    color: rgba(255,255,255,0.5);
    border-color: #3C4049;
}

.section--dark a {
    color: white;
}

.section__label {
    flex-basis: 30%;
    font-family: Menlo, Monaco, "Andale Mono", "Lucida Console", monospace;
    letter-spacing: 1.6px;
    margin-bottom: 30px;
    color: #797B80;
    font-size: 14px;
    margin-left: 90px;
}

.section__content {
    flex-basis: 70%;
}

.image-hall-of-fame {
    max-width: 100%;
    width: 811px;
}

@media only screen and (max-width: 600px) {

    body {
        font-size: 17px;
    }

    .header {
        height: 400px;
        padding: 40px 25px;
    }

    .logo {
        max-width: 190px;
        margin-top: 40px;
    }

    .strapline {
        font-size: 24px;
        margin-left: 52px;
        margin-top: 20px;
    }

    .section .constrainer {
        flex-direction: column;
        padding: 60px 25px;
    }

    .section__label {
        margin-left: 0;
    }
}