/*This file contains all the CSS for the header. */

/* White banner containing title and logo*/
.header {
  display: block;
  position: fixed;
  top: 0;
  height: 150px;
  text-align: center;
  background: white;
  color: #0096FF;
  font-size: 20px;
  width: 100%;
}

.logo-container {
  display: block;
  float: left;
  margin-left: 5px;
}

.logo {
  max-height: 130px;
  max-width: 130px;
  padding: 10px 0px 15px 15px;
}

.title {
  font-size: 3em;
}

/* Portrait and Landscape */
@media only screen 
and (min-device-width: 240px) 
and (max-device-width: 480px)
and (-webkit-min-device-pixel-ratio: 2) {
  .title {
  font-size: 2.5em; /* a little smaller*/
  }
}

/* Portrait */
@media only screen 
and (min-device-width: 240px) 
and (max-device-width: 480px)
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: portrait) {
  .title {
  font-size: 2em; /* a little smaller*/
  }
}

/* Landscape */
@media only screen 
and (min-device-width: 320px) 
and (max-device-width: 480px)
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: landscape) {
  .title {
  font-size: 1.5em; /* a little smaller*/
  }
}


/* Blue bar at the top containing menu*/
.navigation-bar {
  display: block;
  position: fixed;
  background: #0096FF;
  letter-spacing: 1px;
  width: 100%;
  top: 150px;
}

/* Each item in the navigation bar*/
.navigation-item {
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 5px 15px 5px 15px;
  text-decoration: none;
  line-height: 1.5;
  color: white;
  background-color: #0096FF;
  border: none;
  font-size: 30px;
}

/* 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: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

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

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

/* 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: #3e8e41;}