
/* Style the header */
.header {
    background-color: #3082b2;
    text-align: center;
    padding: 12px;
    font-family: "Courier New", Courier, monospace;
    font-style: normal;
    font-weight: normal;
    font-variant: small-caps;
    font-size: 25px;
    color: white;
  }
/* The navbar container */
.topnav {
    overflow: hidden;
    background-color: #f2f2f2 ;
    font-family: "Courier New", Courier, monospace;
  }
  
  /* Navbar links */
  .topnav a {
    float: left;
    display: block;
    color:#3082b2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* Links - change color on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }

  .column {
    float: left;
    font-family: "Courier New", Courier, monospace;
    font-style: normal;
    font-weight: normal;
    /*font-variant: small-caps;*/
    font-size: 15px;
    color: white;
    background-color:#3082b2 ; }
  
  /* Left and right column */
  .column.side {
    width: 25%;
   }
   .column.side a:hover {
    color: black;
  }
  .column.side a {
    color:#f2f2f2;
  }
 
  /* Middle column */
  .column.middle {
    width: 65%;
    padding-left: 5%;
  }
  .column.middle a:hover {
    color: black;
  }
  .column.middle a {
    color:#f2f2f2;
  }

  
  /* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column.side, .column.middle {
      width: 90%;
    }
  }

  .footer {
    background-color: #F1F1F1;
    text-align: center;
    padding: 15px;
    font-family: "Courier New", Courier, monospace;
    color:#3082b2;
    font-size: 12px;
  }
  .footer a:hover {
    color: black;
  }
  .footer a {
    color:#3082b2;
  }


  /*DropDown*/

  /* Style The Dropdown Button */
.dropbtn {
  background-color: #f2f2f2;
  color: #3082b2;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: "Courier New", Courier, monospace;
}
.dropbtn a{
  color: #3082b2;
  text-decoration: none;
  }

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ddd;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  font-family: "Courier New", Courier, monospace;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #3082b2;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #ddd;
}
