
      
        body {
            width: 1000px;
            margin: 0 auto;
            background-color: CadetBlue;
        }
        #header {
            background-color: Gold;
            text-align: center;
            width: 100vw;
            position: fixed;
            left: 0;
            top: 0;
            height: 165px;
            
        }
        
        ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

li {
    float: left;
}

li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: red;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block;
}
        
        }
        #content {
            background-color: DarkCyan;
            
            
          
        }
        #footer {
            background-color: orange;
        }
       #header img{
          height: 180px;
          width: 150px;
          display: block;
          margin:  0 auto;
          position: fixed;
          top: 0;
          left: 0px;
          }
          
        #content img{
            display: block;
            margin: 0 auto;
        }
          
       nav a {
        
            display: block;
            font: 30pt Impact, Charcoal, sans-serif;
            text-align: center;
            color: Navy;
            padding: 20px;
            
        }
        
        nav a:hover {
    color: blue;
    background-color: yellow;
}
        
        h1{
            font-family: Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
            font-size: 60px;
            font-style: normal;
            font-variant: normal;
            font-weight: bold;
            line-height: 53.9px;
            color: navy;
    
        }
        h2 {
            text-align: center;
            font-family: Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
            font-size: 30px;
            font-style: normal;
            font-variant: normal;
            font-weight: bold;
            line-height: 53.9px;
            color: navy;
        }
        
        p {
            font: 20pt "Lucida Sans Unicode", "Lucida Grande", sans-serif;
            padding: 20px;
            
        }
        
     
