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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f9;
  color: #333;
  margin: 0;
}

.container {
  text-align: center;
  background-color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  width: 400px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.75rem;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
}

p {
  font-size: 1.25rem;
  color: #666;
  font-weight: 300;
  font-family: 'Arial', sans-serif;
  margin-top: 0.5rem;
}
