body {
    background-image: url("peakpx.jpg");
    background-color: #000000;
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
        font-family: Verdana, Geneva, sans-serif;
        font-size: 20px;
        letter-spacing: 2px;
        word-spacing: 2px;
        color: #1FD537;
        font-weight: normal;
        text-decoration: none;
        font-style: normal;
        font-variant: normal;
        text-transform: none;
}
   th{
    border:ridge 5px rgb(6, 58, 4);
    background-color:rgb(128, 0, 0);
   }
   td{
    border:ridge 5px rgb(6, 58, 4);
    background-color:rgb(128, 0, 0);
   }

   ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
  li {
    float: left;
    min-width: 200px;
    background-color: #1E792C;
    border-radius: 10px 10px 10px 10px; 
  }
  
  li a, .dropbtn {
    min-width: 200px;
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    border-radius: 10px 10px 10px 10px; 
  }
  
  li a:hover, .dropdown:hover .dropbtn {
    min-width: 200px;
    background-color: #B3000C;
    border-radius: 10px 10px 10px 10px; 
  }
  
  li.dropdown {
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #1E792C;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(33, 33, 33, 0.2);
    border-radius: 10px 10px 10px 10px; 
    z-index: 1;
  }
  
  .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #B3000C;
    border-radius: 10px 10px 10px 10px; 
}
  
  .dropdown:hover .dropdown-content {
    display: block;
  }