/* Basic reset for the page */
 
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-button {
    /* background-color: #333; */
    /* color: blue; */
    color: white;
    border: none;
    /* padding: 10px 20px; */
    padding: 10px 10px;
    /* font-size: 16px; */
    font-size: 18px;
    cursor: pointer;
  }
  
  .dropdown-button:hover {
    /* background-color: #575757; */
    
   
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: lightgray;
       /* min-width: 160px; */
       min-width: 160px;
    z-index: 1;
  }
  
  .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 16px;
    /* font-size: 14px; */
    background-color: #357aae;
  }
  
  .dropdown-content a:hover {
    /* background-color: #575757; */
    background-color: #357aae;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  