/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
 background-image: url('/images/background.png');
 background-repeat: no-repeat;
 background-size: cover; 
 color: black;
 font-family: Sans-serif;
}

#menu img{
     width: 150px;
    }
#menu ul{
      padding: 5px 0px 0px 25px;
      margin: 0;
      width: 100%;
      background-color: #B8CED6;
      border-bottom:5px #2B5A6E solid;
      font-size: 18px;
      font-weight: bold;
      word-spacing: 1.5em;
    }
#menu li{
      display: inline;
      position: relative;
    }
#menu ul ul{
      position: absolute;
      display: none;
      left: 0;
    }
#menu li:hover ul{
      display: block;
    } 
#menu a:link{
      color: #0a3147;
      text-decoration: none;
    }
#menu a:visited{
      color: #0a3147;
      text-decoration: none;
    }
    

#container {
      margin: 50px 300px 20px 300px;
      padding: 1px 15px 1px 15px;
      background-color: rgba(161,191,204,0.75);
      border-radius: 1em;
      font-family: Sans-serif;
    }
#container p{
      font-size: 18px;
    }
    
.content {
      position: relative;
      margin-bottom: 6px;
      border-bottom: 5px #2B5A6E dotted;
    }
.content dfn{
      font-weight: bold;
      font-style: normal;
    }
    
.center {
      display: block;
      margin-left: auto;
      margin-right: auto;
     }
    
#container2 {
      margin: 50px 150px 20px 400px;
      padding: 1px 15px 1px 15px;
      background-color: rgba(161,191,204,0.75);
      border-radius: 1em;
      font-family: Sans-serif;
    }
#container2 p{
      font-size: 18px;
    }
    
#navcontainer {
      float: left;
      margin-top: 50px;
      width: 350px;
      padding: 1px 15px 1px 15px;
      background-color: rgba(161,191,204,1);
      border-radius: 1em;
      font-family: Sans-serif;
      font-size: 18px;
      font-weight: bold;
      line-height: 2.5;
      
    }

#navcontainer ul{
      list-style-type: none;
    }

#navcontainer a:link {
      color: #2B5A6E;
      text-decoration: none;
    }
    
#navcontainer a:visited {
      color: #2B5A6E;
      text-decoration: none;
    }







