* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

body {
    width: 100%;
    overflow-x: hidden;
    background-color: #0a930a;
}

header.wrapper {
    text-align: center;
    background-color: #A69337;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../image/header-bg.jpg');
}

header div.flexRow {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    justify-content: space-between;
}

@media screen
    and (min-width: 300px)
    and (max-width: 650px) {
        header div.flexRow { flex-flow: column nowrap; }
}

header a#logo {
    width: 100px;
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url('../image/logo.png');
}

header h1 {
    font-size: 45px;
    margin-bottom: 10px;
}

header nav a {
    margin: 0 8px;
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    transition: 0.2s all linear;
}

header nav a:hover { color: #ffffff; }

section#pgBody {
    background-color: #b1f1a7;
    margin-top: 10px;
    padding: 20px;
    border-radius: 5px;
}
section#pgBody h2 {
    font-size: 30px;
    text-align: center;
}

div.content { margin: 20px 0; }

div.content img { max-width: 100% }

div.content p {
    margin: 10px 0;
    font-size: 15px;
}

div.breakoutBox p {
    margin: 10px 0;
    font-size: 30px;
	align-content: center;
	text-align: center;
}

div.content table { margin-top: 30px; }

div.content table td {
    padding: 0 20px;
}

@media screen
    and (min-width: 300px)
    and (max-width: 650px) {
        div.content table thead { display: none; }
        div.content table tr { display: table-cell; }
        div.content table tr > * { display: block; }
        div.content table th,
        div.content table td { padding: 5px 5px; }
}

div.breakoutBox {
    margin-top: 30px;
    padding: 20px;
    background-color: yellow;
    border-radius: 5px;
}

footer { 
    text-align: center;
    font-size: 13px;
    padding: 30px 0;
}
