a {
  font-family:arial;
}
body {
  background-color:powderblue;
}
h1 {
  font-family:impact;
  text-align:center;
}
p {
  font-family:arial;
  text-align:center;
}
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff; /* Blue color */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.button:hover {
  background-color: #0056b3; /* Darker blue on hover */
}
.button2 {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e53935; /* Red */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.button2:hover {
  background-color: #b71c1c; /* Dark Red */
}
