* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  height: auto;
  font-family: Arial, sans-serif;
}

.background {
  background-color: rgb(130, 180, 217); /* Soft blue */
  background-image: url('1-scaled-3-2048x1031.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh; /* Allow the background to cover the full viewport initially */
  padding-bottom: 20px; /* Add padding to prevent content from touching the bottom */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.banner {
  margin-top: 50px;
  max-width: 80%;
}

.info-box, .download-box, .privacy-box {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.video-player iframe {
  width: 800px;
  height: 450px;
  max-width: 100%; /* Responsive width */
}

.privacy-box {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.9em;
  line-height: 1.4;
}
.image-credit {
  font-size: 0.7em;
  color: rgba(255, 255, 255, 0.3); /* Very light and subtle */
  text-align: center;
  position: absolute;
  bottom: 5px;
  width: 100%;
}
