html {
    background: #DC951A;
    
}

body {
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: #545454;
    font-family: Garamond, Georgia, Times, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
    padding: 2em 2em 4em;
    
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: #0083e8;
}

b, strong {
    font-weight: 600;
}

samp {
    display: none;
}

img {
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    background: transparent;
    border: 10px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    display: block;
    margin: 1.3em auto;
    max-width: 95%;
}

.navbar {


background-color: #DC951A;
 
margin:0px
}
.navbar ul{

list-style-type: none;
background-color: #DC951A;
padding:0px;
margin:0px;
overflow: hidden;
margin:0px


}
.navbar a{
color: white;
text-decoration: none;
padding: 15px;
display: block;
text-align: center;

}

.navbar a:hover {

background-color: blue;


}

.navbar li{
float:left;

}

@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }

}

.nobull {
  list-style-type: none;
 }