* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #a1ffce, #faffd1);
}

.container {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  max-width: 450px;
}

h1 {
  font-size: 44px;
  color: #2a9d8f;
  margin-bottom: 15px;
}

p {
  font-size: 17px;
  color: #444;
  margin-bottom: 10px;
}
