html,body {
    margin: 0;
    background-color: #161616;
    font-size: 16px;
}

@media screen and (min-width: 840px) {
    body {
        font-size: 1.5em;
    }
}

@media screen and (min-width: 1200px) {
    body {
        font-size: 1.8em;
    }
}



h1,h2,h3,h4,h5,h6,p,li,img,a {
    padding: 0;
    margin: 0;
}

header {
    grid-area: header;
    background-color: black;
    background-image: url(header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 4em 2em;
    color: white;
    text-align: center;
}

header h1 {
    font-size: 2.2em;
    line-height: .9em;
    font-weight: 600;
    font-family: 'Press Start 2P', cursive;
    text-shadow: 2px 2px 2px rgba(16,16,16,0.7), 0px 0px 12px rgba(16,16,16,0.4);
}

.subtitle {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.line-wrapper {
    display: none;
    max-width: 7em;
}

.subtitle h2 {
    flex: 0 0 auto;
    padding: 0 .2em;
    font-size: 1.6em;
    font-weight: 500;
    font-family: 'Press Start 2P', cursive;
    text-shadow: 1px 1px 1px rgba(16,16,16,0.7), 0px 0px 12px rgba(16,16,16,0.4);
}

section {
    background-color: #161616;
    padding: 1.6em;
    color: white;
}

section h2 {
    color: #99ff66;
    font-size: 1.6em;
    font-weight: 500;
    font-family: 'Press Start 2P', cursive;
    text-align: center;
}

section p {
    font-family: Arial, sans-serif;
}

.logo-container {
    display: block;
}

.logo-container #logo {
    display: block;
    width: 10em;
    height: auto;
    margin: 1em auto;
}

#latest {
    grid-area: latest;
}

#social {
    grid-area: social;
}

#subscribe {
    grid-area: subscribe;
    background-color: #111111;
}

footer {
    grid-area: footer;
    background-color: rgb(16,16,16);
    color: rgb(48,48,48);
    padding: 1em;
    text-align: center;
    font-size: 0.8em;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
}

a.social:visited {
    text-decoration: none;
}

a.social:hover {
    text-decoration: none;
}

a.inline {
    color: #99ff66;
}

a.inline:visited {
    color: #99ff66;
}

a.social {
    margin: 0 .25em;
    color: #99ff66;
    font-size: 3em;
}

a.social:visited {
    color: #99ff66;
}

a.social:hover {
    text-shadow: 0 0 20px #99ff66;
}

.container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.iframe-container {
    margin-top: 1em;
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 600px) {
    .main {
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
    }

    #latest {
        flex: 2 1 auto;
        max-width: 1200px;
    }

    #subscribe {
        flex: 1 1 20%;
        max-width: 20em;
        background-color: #161616;
    }

    .subtitle {
        flex-flow: row nowrap;
    }

    .line-wrapper {
        display: block;
        flex: 1 0 auto;
        position: relative;
    }

    .line {
        display: block;
        background-color: white;
        height: 2px;
        width: 100%;
        position: absolute;
        top: 50%;
        transform: translate(0,-50%);
        box-shadow: 2px 2px 2px rgba(16,16,16,0.7), 0px 0px 12px rgba(16,16,16,0.4);
    }
}