body {
  margin: 0;
  padding: 0;
  font-family: "Times New Roman", Times, serif;
  background-color: #fefaf6;
  color: #111;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

h1 {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.email-button {
  display: inline-block;
  background-color: #111;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s;
}

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