/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Page styling */
body {
  height: 100vh;
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content card */
.container {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px 60px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Heading */
.container h1 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 10px;
}

/* Subtext */
.container p {
  font-size: 1.2rem;
  color: #555;
}
