body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: white;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5vh;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

header img {
  object-fit: cover;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.background-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.content {
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  transform: translate(0%, -50%);
  text-align: center;
  z-index: 2;
}

.center-logo {
  width: 100%; /* Adjusted to take up 50% of the width of the buttons */
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.buttons a {
  text-decoration: none;
  color: white;
  background-color: rgba(70, 130, 180, 0.8); /* steel blue */
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  width: 30%; /* Each button will be approximately 30% of the container's width */
  max-width: 320px; /* Optional max-width */
  text-align: center;
}

.buttons a:hover {
  background-color: rgba(70, 130, 180, 1); /* darker steel blue */
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 10vh;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  justify-content: space-between; /* Adjusted to space items evenly */
  padding: 10px 0; /* Added padding to create space at the top and bottom */
  background-color: rgba(0, 0, 0, 0.5); /* Optional background for better visibility */
}

.badges {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.badges img.badge {
  height: 8vh; /* Adjusted height */
  object-fit: contain; /* Ensure the aspect ratio is preserved */
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
