body,
html {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", serif;
}

section {
    background-color: #EEEEEE;
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.leftNav {
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leftNav .center {
    padding: 5%;
}

.leftNav .center h1 {
    font-size: 2rem;
}

.leftNav .center p {
    font-size: 1rem;
}

.rightNav {
    width: 50vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
}

.rightNav img {
    object-fit: contain;
    height: 100%;
}

@media only screen and (max-width: 1000px) {

    .leftNav {
        width: 100vw;
        height: 50vh;
    }

    .rightNav {
        width: 100vw;
        height: 50vh;
    }
}