body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('../img/background.webp') no-repeat center center fixed;
  background-size: cover; /* This ensures that the background covers the entire area but maintains aspect ratio */
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  font-family: Arial, sans-serif;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.message-box {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 90%;
}

@media (min-width: 768px) {
  .message-box {
    max-width: 600px;
  }
}
