/* Begin OOP 1 Assignment Styles */

body {
    background-color: #E6E6E6;
}
    
p {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
}
    
h1 {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    color: #2D79E3;
}
    
h1:first-child {
    color: black;
}
    
h2 {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3d6d9e+0,004f9e+100 */
background: #3d6d9e; /* Old browsers */
background: -moz-linear-gradient(top,  #3d6d9e 0%, #004f9e 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3d6d9e), color-stop(100%,#004f9e)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #3d6d9e 0%,#004f9e 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #3d6d9e 0%,#004f9e 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #3d6d9e 0%,#004f9e 100%); /* IE10+ */
background: linear-gradient(to bottom,  #3d6d9e 0%,#004f9e 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3d6d9e', endColorstr='#004f9e',GradientType=0 ); /* IE6-9 */
height: 30px;
color: white;
padding: 5px;
}
    
h3 {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
}
    
li {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
}

.codesnippet {
    margin-left: 50px;
    width: 500px;
    border-radius: 8px;
    border: 1px solid Gray;
    font-family: Consolas,"courier new";
    font-size: 16px;
    line-height: 1.4;
    background-color: #fff;
    padding: 8px 12px;
    border-left: 4px solid #2D79E3;
    color: forestgreen;
}
    
.codesnippet p {
    font-family: Consolas,"courier new";
}
    
img {
    border: 1px solid black;
    border-radius: 8px;
    padding: 10px;
    background-color: white;
}

img[src*="logo.png"] {
    border: 0px solid black;
    border-radius: 0px;
    padding: 0px;
    background-color: transparent;
}
    
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #2D79E3;
    margin: 1em 0;
    padding: 0;
}  