/*
Theme Name: Jerry Gnome Custom Theme
Author: Cody M Leff <mail@codymleff.com>
Author URI: https://codymleff.com/
Description: This is the custom theme for the Jerry Gnome website.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    margin: 0 auto;
    max-width: 900px;
    padding: 1em 5em;
    line-height: 1.5;
    letter-spacing: .02em;
}

h1 {
    font-size: 1em;
    margin: 1em 0;
}

header {
    padding-top: 5em;
    padding-bottom: 3em;
    border-bottom: 1px solid black;
    text-align: center;
}

main {
    padding-top: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid black;
    text-align: left;
}

footer {
    margin-top: 1em;
    margin-bottom: 1em;
}

section {
    margin: 2em 0;
}

.section-2 {
    display: flex;
}

.section-2 .right {
    padding-top: 1em;
    margin-left: 2em;
}

@media (max-width: 800px) {
    
    .section-2 {
        flex-direction: column-reverse;
        align-items: center;

    }

    .section-2 .right {
        padding-top: 0;
        margin-left: 0;
    }

}

.section-2 .left {
    flex-grow: 1;
}

.no-break {
    white-space: nowrap;
}