/* Reset and Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  background-color: #f8f9fa;
  font-family: Arial, sans-serif;
}

.wrapper {
  height: 95vh;
  width: 95vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Container: centered card */
.container {
  text-align: center;
  background-color: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  transition: transform 0.3s ease;
}

/* Zoom effect for desktop */
@media (min-width: 1024px) {
  .container {
    transform: scale(1.25); /* Zoom in on large screens */
  }
}

/* Image Styling */
.notice {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 12px;
}

/* Text Styles */
.container h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.container p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

strong {
  color: #000;
}

/* Mobile Tweaks */
@media (max-width: 480px) {
  .container {
    padding: 20px 15px;
  }

  .container h1 {
    font-size: 1.5rem;
  }

  .container p {
    font-size: 0.95rem;
  }
}
