body {
    margin: auto;
    background-color: #1f1f1f;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

a {
    color: orange;
}

.navBox {
    height: 40px;
    border-bottom: black solid 2px;
    margin: auto;
    display: flex;
    font-size: large;
    justify-content: space-evenly;
}

.navBoxRestraints {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 60%;
    height: auto;
    display: flex;
}

.navBoxLeft{
    left: 0px;
    color: white;
    font-family: fantasy;
    width: 150px;
    flex: 1;
}

.navBoxRight{
    width: 400px;
    display: flex;
    justify-content: space-evenly;
    right: 0px;
    flex: 1;
}

.content {
    margin: auto;
    width: 60%;
}

.contentBox {
    background-color: rgb(27, 70, 55);
    border-radius: 5%;
    padding: 5%;
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contentBoxLeft {
    margin-right: auto;
    margin-left: 0;
    padding-right: 5%;
}

.contentBoxRight {
    margin-left: auto;
    margin-right: 0;
    right: 0px;    
}

.contentSmall {
    width: 30%;
    margin: auto;
}