* {
    margin: 0;
    top: 0;
}

body {
    background-color: #687291;
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}

/* Navigation Bar Styles */
nav {
    z-index: 10;
    height: 20vh;
    width: 100vw;
    background-color: white;
    color: #233E98;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
}

nav > img {
    max-width: 25vw;
}

nav > a {
    text-decoration: none;
    font-weight: bolder;
    font-size: 1.5em;
}

/* Noah Cartoon Footer */
.noah {
    z-index: 10;
    max-height: 300px;
    position: fixed;
    top: 50vh;
    left: 78vw;
}

/* General Sections */
section {
    width: 100vw;
    height: 100vh;
}

/* Section 1 */
.page1 {
    z-index: 2;
    background-image: url("img/house-bg.jpg");
    background-size: cover;
}

/* Section 2 */
.page2{
    z-index: 2;
    background-color: red;
}

