body {
    background-color: rgb(0, 0, 0);
    color: #fff;
    font-family: 'Trebuchet MS', sans-serif;
    text-;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header, section, footer {
    text-align: center;
    margin: 20px;
}

header h1 {
    color: white;
}

header h2 {
    color: white;
    padding-bottom: 10px;
}


.divider {
    border-top: 2px solid #ddd;
    padding-bottom: 20px;
  }

section {
    border-bottom: 2px solid #ddd;
    padding-bottom: 20px;
}

ul {
    list-style-type: none;
    margin-bottom: 2px;
    padding: 0;
}

li {
   margin-bottom: 20px; 
}

a.btn {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    background-color: #980000;
    color: #fff;
    border-radius: 5px;
}

/* Styling for the navigation bar */
nav {
    padding: 10px;
    display: flex;
    justify-content: center; /* Center the items horizontally */
  }
  
  /* Styling for the navigation list */
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  /* Styling for individual navigation items */
  nav li {
    margin-right: 10px;
    padding-right: 2px;
    list-style: none;
  }
  
  /* Styling for navigation links */
  nav a {
    color: white;
    text-decoration: none;
  }
  
  /* Styling for navigation links on hover */
  nav a:hover {
    text-decoration: underline;
  }
  
  .custom-iframe {
    width: 100%;
    height: 1200px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #000000;
  }

  footer {
    margin-top: 30px;
    margin-bottom: 120px;
}

iframe {
  opacity: 0.6589; /* Set the opacity here */
}

/* Existing CSS styles... */

/* Adjustments for mobile devices */
@media only screen and (max-width: 600px) {
  section#navmenu {
      width: 100%; /* Make the navmenu take the full width of the viewport */
  }

  section#navmenu nav {
      display: flex;
      flex-direction: column;
      align-items: center; /* Center the items horizontally */
  }

  section#navmenu nav li {
      margin-bottom: 10px; /* Add some spacing between the menu items for better readability */
  }
}

/* Existing CSS styles... */
