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

:root {
  --grad-start: #2193b0;
  --grad-end:   #6dd5ed;
  --text-color: #333;
}

* {
  margin: 0; padding: 0; box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(to bottom right, var(--grad-start), var(--grad-end));
  font-family: 'Poppins', sans-serif;
}

.container {
  background: rgba(255,255,255,0.85);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

p {
  font-size: 1.125rem;
  color: var(--text-color);
  line-height: 1.5;
}
