@charset "UTF-8"; 

/* Dropdown Button */
.dropbtn {
    background-color: #3f51b5;
    color: #D5D5D5;
    padding: 1rem 0;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    border-radius: 1.5rem;
    width: 61.1rem;
  }
  
  @media only screen and (max-width : 40rem) {
  .dropbtn {
    width:75%;
    padding: 0.125rem 0;
    margin:0;
    font-size: 1.2rem;
  }
}
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    background-color: #C4B4BE;
    font-size: 1.5rem;
    align-items:center;
    color: #003737;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }

  @media only screen and (max-width : 40rem) {
  .dropdown {
    width:50%;
    padding: 0.5rem 0;
    margin:0;
    font-size: 1.2rem;
  }
}
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    margin:0;
    padding: 1.5rem 0;
    display:none;
    background-color: #B5B5B5;
    z-index: 1;
    border-radius: 0.5rem;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    padding: 0.25rem 1rem;
    text-decoration: none;
    display: block;
    font-size: 1.5rem;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #B5B5B5}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}

  @media only screen and (max-width : 40rem) {
  .dropdown-content {
    width:75%;
    padding: 0.25rem 0;
    margin:0;
  }
}
