/*Master Styles */

body {
    font-family: "Roboto", sans-serif;
    margin: 0px;
    background-color: white;
    max-width: 1000px;
    margin: auto;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
}

.masthead {
    display: block;
    width: 1000px;
    margin: 0 auto;
    align-content: center;
}

/* Nav Styles */

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 38px;
}

.left-side {
    display: flex;
}

.nav-wrapper > .left-side > div {
    margin-right: 20px;
    font-size: 1em;
    text-transform: uppercase;
}

.nav-link-wrapper {
    height: 22px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
}

.nav-link-wrapper a {
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.5s;
}

.nav-link-wrapper:hover {
    border-bottom: 1px solid black;
}

.nav-link-wrapper a:hover {
    color: black;
}

.active-nav-link {
    border-bottom: 1px solid black;
}

.active-nav-link a {
    color: black !important;
}

/* Page Content */
.content {
    width: auto;
    padding: 15px;
    text-transform: uppercase;
}
.h1 {
    color: darkgrey;
}
.h2 {
    color: darkgrey;
    line-height: 1.5em;
}
.p {
    color: darkgrey;
}
.top-section {
    float: left;
    margin: 0;
    width: 65%;
    padding-bottom: 10px;
    line-height: 1.8em;
}
.bottom-section {
    width: 65%;
}
.right-section {
    float: right;
    margin: auto;
    width: 33%;
    height: auto;
}

/* Right Section Gallery */

.rightgallery {
    padding: 2px;
}
img.resize {
        max-width: 35%;
        max-height: 20%;
}

/* Contact */
.contact {
    padding: 15px;
}

/* Footer */
.footer {
    position: absolute;
    left: 50%;
}