/*FOR DESKTOP AND TABLETS*/
@media screen and (min-width: 481px) {
/*Drop down menu*/
.hamburger {
  background-color: transparent;
  position: fixed;
  right: 2.5em;
  top: 3.5em;
}

.dropdown {
  position: fixed;
  display: inline;
  right: 8.8em;
  top: 3.2em;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: transparent;
  width: 10em;
}

.dropdown-content a {
  color: rgb(237, 100, 3);
  text-decoration: none;
  display: absolute;
}

.dropdown-content a:hover {
  background-color: rgb(240, 192, 105, 0.2);
}

.dropdown:hover .dropdown-content {
  display: block;
  z-index: 1;
}

.dropdown:hover .dropbtn {
  display: block;
  background-color: rgb(240, 192, 105, 0.2);
}

 .menu_font {
    font-family: "Manrope", serif;
    font-style: normal;
    font-size: 18px;
    color: rgb(237, 100, 3);
    text-align: right;
 }
}

 @media screen and (max-width: 480px) {
  .hamburger {
    background-color: transparent;
    position: fixed;
    right: 2.5em;
    top: 3.5em;
  }

  .mobile-content {
    position: fixed;
    background-color: transparent;
    width: 10em;
    right: 1.2em;
    top: 3.2em;
    text-align: right;
 }
  
  .mobile-content.hidden {
    display: none;}
  
  .mobile-content a{
    font-family: "Manrope", serif;
    font-style: bold;
    text-decoration: none;
    font-size: 0.8em;
    color: rgb(237, 100, 3);
 }
} 