html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    overscroll-behavior-y: none;
    font-family: 'Roboto';
    font-size: 20px;
    color: white;
}

h1, h2, h3, h4 {
    font-family: 'Tw Cen MT';
}

#navigation {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

#navigation div {
	color: grey;
	cursor: pointer;
}

#navigation div:hover {
	color: white;
}


.blue {
    color: #4298e3;
}

a {
    text-decoration: none;
}

.levelandslope {
    font-family: 'Tw Cen Mt';
    font-weight: bold;
    display: inline;
    align-items: center;
    font-size: 1.3rem;
}

.levelandslope .ampersand {
    font-weight: normal;
    font-family: 'levelandslope';
    font-size: 62%;
}

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

    .levelandslope {
        font-size: 2.2rem;
    }

    .levelandslope .ampersand {
        font-size: 63%;
    }
}

#container {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    background: black;
    overflow: hidden;
}

#section_logo {
    position: relative;
    z-index: 10;
}

#section_body {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: black;
}

#logo {
    width: 200px;
    position: relative;
    z-index: 10;
}

#content {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

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

    p {
        font-size: 1.75rem;
    }

    #container {
        flex-direction: column;
    }

    #section_logo {
        display: flex;
        width: 100%;
        height: 240px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 0 50px;
        box-sizing:border-box;
    }

    #logo {
        position: relative;
        top: 10px;
    }

    #section_body {
        height: calc(100% - 240px);
        width: 100%;
        box-sizing:border-box;
        padding: 50px 50px 0 50px;
        display: flex;
    }

    h1 {
        font-size: 4rem;
        margin: 0px;
    }

    #content {
        height: calc(100% - 3rem);
    }

    #footer {
        height: 3rem;
    }

    #copyright {
        font-size: 1.5rem;
    }

}

@media screen and (min-width: 1125px) {

    h1 {
        font-size: 3rem;
        margin: 0px;
    }

    #container {
        flex-direction: row;
    }

    #section_logo {
        display: flex;
        width: 340px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 60px 50px;
        box-sizing:border-box;
    }

    #section_body {
        width: calc(100% - 340px);
        box-sizing:border-box;
        padding: 50px 50px 0 100px;
        display: flex;
    }

    #content {
        height: calc(100% - 2rem);
    }

    #footer {
		height: 2rem;
        display: flex;
        justify-content: space-between;
        font-size: .6em;
    }

    #copyright {
    }

}
