body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.notice {
  background-color: #fff;
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.notice h1 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.notice p {
  color: #555;
}

.notice a {
  color: #007BFF;
  text-decoration: none;
}

.notice a:hover {
  text-decoration: underline;
}