@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to right, #ffd1dc, #ffffff, #d0f0ff);
  color: #000;
  margin: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

p, li {
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto 1rem auto;
}

ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0 auto 1rem auto;
  max-width: 600px;
  text-align: left;
}

button {
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover {
  background-color: #333;
}
