/* Add a background color to the body */
body {
  background-color: #f2f2f2; /* light gray */
}

/* Center the title and add some padding */
h1 {
  text-align: center;
  padding: 20px;
}

/* Style the title text */
h1 {
  color: #333; /* dark gray */
  font-size: 36px;
  font-weight: bold;
}

/* Add some padding and style the email text */
p {
  padding: 10px;
  font-size: 18px;
  text-align: center;
}

/* Add a background color to the email text */
p {
  background-color: #e6e6e6; /* light gray */
}

a {
  color: #333; /* dark gray */
  text-decoration: none;
  margin: 10px;
  display: block;
}
