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

a, a:visited {
  color: white; 
}

.mobileDownload {
  display: none;
}

.newsletters {
  width: 100%;
  margin: auto;
}

object, iframe {
  width: 100%;
  height: 100vh;
}

select {
  width: 100%;
  max-width: 45%;
  font-size: 1.2em;
}

.wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Responsive styles */
@media only screen and (max-width: 1000px) {
  .wrapper {
    width: 100%;
  }

  object, iframe {
    height: 80vh;
  }

  .mobileDownload {
    display: block;
  }

  .newsletters {
    width: 100%;
  }

  select {
    width: 100%;
    font-size: 1em;
  }
}

@media only screen and (max-width: 600px) {
  .newsletters {
    width: 100%;
    flex-direction: column;
  }

  iframe {
    height: 80vh;
  }
}

#mobileDownload {
  display: none; /* Hidden on larger screens */
}

@media only screen and (max-width: 768px) {
  #mobileDownload {
    display: block; /* Visible on smaller screens only */
  }
}