/*
Colors:
    dark blue: #0062A1;
    lighter blue: #77BFE2;
    orange: #FBB040;
    yellow: #FFBE34;
*/

@import url('https://fonts.googleapis.com/css2?family=Muli:wght@400;700;800;900&display=swap');
@font-face{
  font-family:"Breakfast Noodles";
  src: url("Breakfast Noodles.otf");
}
@media(max-width: 1410px){
  .nav{
    flex-direction: column;
    width: 20%;
  }
  #title{
    width: 80%;
  }
}

html, body{
  margin: 0;
  padding: 0;
}
body{
    font-family: "Muli";
    background-color: white;
}

#header{
  background-color: #0062A1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
}

#title{width: 50%;}

#title h1, #title a{
  margin-top: 20px;
  margin-bottom: 20px;
  color: white;
  font-size: 50px;
  font-weight: normal;
  font-family: "Breakfast Noodles";
  text-decoration: none;
}

.nav {
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  width: 50%;
}

.nav a{
  text-decoration: none;
  float: left;
  font-size: 20px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.drop-down {
  float: left;
  overflow: hidden;
}

.drop-down .drop-btn {
  font-size: 20px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  width: 100%;
}

.nav a:hover, .drop-down:hover .drop-btn {
  background-color: #77BFE2;
  text-decoration: none;
  color: white;
}

.drop-down-content {
  display: none;
  position: absolute;
  background-color: #77BFE2;
  min-width: 160px;
  /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
  z-index: 1;
}

.drop-down-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  background-color: #77BFE2;
}

.drop-down-content a:hover {
  background-color: #FBB040;
}

.drop-down:hover .drop-down-content {
  display: block;
}
@media(max-width: 1410px){
  .nav{
    flex-direction: column;
    width: 20%;
  }
  #title{
    width: 80%;
  }
}
@media(max-width: 375px){
  
      #title h1{
        font-size: 30px;
      }
      .nav a, .drop-down .drop-btn{
        font-size: 14px;
      }
      .nav{
        width: 35%;
      }
      #title{
        width: 65%;
      }
}