body {
  background-color: black;
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  position: relative;
  width: 1131px;
  margin: 0 auto;
}

.background-img {
  width: 100%;
  display: block;
}

.menu {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  z-index: 2;
  background-color: black;
}

.menu a {
  background-color: black;/* orange semi-transparent */
  color: white;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
}

.menu a:hover {
  background-color: white;
  color: orange;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  justify-content: center;
  margin-top: 20px;
}

.social-links img {
  display: flex;
  align-items: center;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.0);
  padding: 0px 0px;
  color: white;
  height: 70px;
  width: auto;
  font-weight: bold;
  transition: background-color 0.3s;
}

.social-links a:hover {
  color: black;
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  min-width: 120px;
  z-index: 1;
  border: 1px solid #444;
  border-radius: 5px;
}

.dropdown-content a {
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.dropdown-content a:hover {
  background-color: orange;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.wac {
  font-size: 1rem;
  color: white;
  max-width: 1131px;
  margin: auto;
}

.wac a{
  color: white;
}