html {
    background-image: 
        linear-gradient(#fffee6,#ffe19c);  
}

h2, h4 {
    text-align: center;
    font-family: 'Cardo', serif;
}   

h1 {
    text-align: center;
    text-transform: uppercase;
    font-family: 'Cardo', serif;
}

p {
    width: 95%;
    margin: auto;
    padding: 5px;
    padding-bottom: 10px;
    font-family: 'Cardo', serif;
}

/*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;
}


#main {
    width: 90%;
    margin: auto;
    margin-top: 49px;
    min-width: 800px;
    padding-top: 30px;
    padding-bottom: 200px;
}

.picturebox {
    width: 100%;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.picturebox img {
    border: 3px solid black;
}

#karen img {
    height: 400px;
    border: 5px solid black;
    box-shadow: 10px 8px 15px #888888;
}

.indent {
    text-indent: 40px;   
}

.box {
    width: 700px;
    margin: auto;
    top: 100px;
    text-align: justify;
}

.center {
    text-align: center;   
}

.picture {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.picture img {
    height: 400px;   
    border: 3px solid black;
}

#indian img {
    height: 500px;
}

#reality {
    margin-top: 150px;
}

@media screen and (max-width: 880px) {    
    #nav ul li {
        width: 90px;
    }
}

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