body {
  font-family: Arial, sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  margin: 0;
  padding: 0;
  background-image: url("background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
}

img {
  max-width: min(200px, 80vw);
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 20px;
  color: #2c3e50;
}

p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.button {
  display: inline-block;
  padding: 15px 30px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: white;
  background-color: #3498db;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  min-width: 150px;
  text-align: center;
}

.button:hover {
  background-color: #2980b9;
}

footer {
  text-align: center;
  padding: 10px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: #acacac;
}

footer a {
  color: #add8e6;
  text-decoration: none;
}

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

/* Mobile styles */
@media (max-width: 768px) {
  .container {
    padding: 15px;
    margin: 10px;
    max-width: 95vw;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
  }

  .button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1.1em;
  }

  footer {
    padding: 15px 10px;
    font-size: 0.8rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .container {
    padding: 10px;
    margin: 5px;
  }

  h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .button {
    padding: 10px 15px;
    font-size: 1em;
  }

  footer {
    font-size: 0.7rem;
    padding: 10px;
  }
}
