html {
    background: #faffd0;
}

/*Navigation window*/
#nav {
    width: 100%;
    top: -1px;
    left: -1px;
    z-index: 1;
    position: absolute;
}

#nav ul li {
    width: 120px;
    height: 50px;
    line-height: 50px;
    font-size: 1.2em;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
}

#nav ul {
    list-style: none;
    background-color: #5a301d;
    text-align: center;
    padding: 0;
    margin: 0;
}
 
#nav a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    transition: .3s background-color;
}
 
#nav a:hover {
    background-color: #535353;
}
 
#nav a.active {
    background-color: #fff;
    color: #444;
    cursor: default;
} 


#select {
    background: #fffee6;
}

#select a {
     color: black;   
}

#select a:hover {
    background: #fffee6;   
} 

.content {
    margin-top: 70px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

#header {
     text-align: center;   
}

.imagecontainer {
    width: 100%; 
    text-align: center;
    margin: 50px 0px;
}

.imagecontainer img {
    width: 50%;
}

.center {
     text-align: center;   
}

.globecontainer {
    text-align: center;
}

.globecontainer img {
     width: 20px;   
}


@media screen and (max-width: 880px) {    
    #nav ul li {
        width: 90px;
    }
    
    .content {
        width: 80%;   
        min-width: 500px;
    }
}

@media screen and (max-width: 570px) {    
    #nav ul li {
        width: 30vw;
    }
}