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;
}

.topnav {
  background-color: #ffffff;
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
  border-bottom: 2px solid #d51c1c;
}

.topnav a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  padding: 10px 20px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #ffffff;
  border: 1px solid #d51c1c;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 160px;
  z-index: 1;
  border: 1px solid #d51c1c;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #000000;
  padding: 8px 12px;
  text-decoration: none;
  display: block;
}

.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;
  height: 150px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid #d51c1c;
  margin-bottom: 20px;
}

.oneFive p {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px #000000;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background-color: #ffffff;
  border-top: 2px solid #d51c1c;
}

.button-container button {
  padding: 10px 20px;
  background-color: #d51c1c;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.button-container button:hover {
  background-color: #b11515;
}

.steps-section {
  display: none;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background-color: #ffffff;
  border-top: 2px solid #d51c1c;
  margin-bottom: 20px;
}

.content-section {
  display: none;
  padding: 20px;
  background-color: #ffffff;
  border-top: 2px solid #d51c1c;
  text-align: center;
}

.content-section p {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}

.content-image {
  width: 600px;
  height: 300px;
  object-fit: cover;
  border: 2px solid #d51c1c;
  margin-top: 10px;
}

.content-section strong {
  color: #d51c1c;  /* Red for emphasis */
  font-weight: bold;
  font-size: 18px;  /* Slightly larger */
}