body {
  background-color: blue;
  color: white;
  font-family: "Comic Sans MS", "Comic Sans", sans-serif;;
  text-align: center;
  padding-top: 30px;
}

h1 {
  font-size: 2.5em;
}

.button {
  cursor: pointer;
  width: 500px;
  height: auto;
  margin-top: 20px;
  border: 3px solid white;
  border-radius: 10px;
  transition: transform 0.2s;
}

.button:hover {
  transform: scale(1.1);
}
