body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
  }
  
  .ammoh {
    text-align: center;
    font-size: 24px;
    color: white;
    background-color: #d51c1c;
    padding: 10px;
    margin-bottom: 15px;
  }
  
  .oneFive {
    background-image: url('https://armyrecognition.com/images/stories/north_america/united_states/artillery_vehicle/m777/M777_155mm_ultralight_lightweight_towed_howitzer_United_States_925_001.jpg');
    background-size: cover;
    background-position: center;
    height: 150px;
    width: 100%;
    border: 5px solid #d51c1c;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .oneFive p {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px #000000;
  }
  
  .topnav {
    background-color: #ffffff;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    border-bottom: 2px solid #d51c1c;
  }
  
  .topnav a, .dropbtn {
    color: #000000;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .topnav a.active {
    background-color: #d51c1c;
    color: #ffffff;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown .dropbtn {
    background-color: #ffffff;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid #d51c1c;
    z-index: 1;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    color: #000000;
    font-weight: bold;
  }
  
  .dropdown-content a:hover {
    background-color: #d51c1c;
    color: #ffffff;
  }
  
  .submenu {
    position: relative;
  }
  
  .submenu-content {
    display: none;
    position: absolute;
    left: 160px;
    top: 0;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid #d51c1c;
    z-index: 1;
  }
  
  .submenu:hover .submenu-content {
    display: block;
  }
  
  .submenu-content a {
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    color: #000000;
  }
  
  .submenu-content a:hover {
    background-color: #d51c1c;
    color: #ffffff;
  }
  
  .button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; 
    margin-bottom: 20px;
  }
  
  .red-button {
    background-color: #d51c1c;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    margin-bottom: 10px;
  }
  
  .red-button:hover {
    background-color: #a51515;
    transform: scale(1.05);
  }
  
  .content-section {
    display: none; /* Hidden by default */
    padding: 15px;
    margin-bottom: 15px;
    background-color: #ffffff;
    border: 2px solid #d51c1c;
    width: 60%; /* Adjust width as needed */
    max-width: 800px;
    margin: 0 auto; /* Center the content */
    text-align: left; /* Left-align the text for readability */
    line-height: 1.6; /* Increased line height for better spacing */
}

.content-section h3 {
    margin-top: 0;
    color: #d51c1c;
    text-align: center; /* Center the heading */
}

.content-image {
    width: 100%;
    max-width: 400px; /* Adjust as needed */
    height: auto;
    margin-bottom: 15px; /* Spacing between image and text */
}


    