@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans Thai', sans-serif;
}

body {
  background: linear-gradient(135deg, #ffcc70, #ff9a44);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


.container {
  padding: 20px;
}

.notice-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 480px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.notice-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

h1.error-title {
  font-size: 2rem;
  color: #d32f2f;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
}

p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

p.footer {
  color: #888;
  font-size: 0.9rem;
}
