h1 {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  text-align: center;
  color: white;
  text-decoration: underline;
  text-shadow:
    1px 1px 0 grey,
    2px 2px 0 grey,
    3px 3px 0 grey,
    4px 4px 0 grey,
    5px 5px 0 grey,
    6px 6px 0 grey;
}
body {
  background-color: slateblue;
  color: white;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  text-align: center;
}
button {
  border-radius: 10px;
  padding: 5px;
  font-size: 20px;
  transition: transform 1s ease;
}
button:hover {
  transform: scale(1.2);
}
img {
  border-radius: 500px;
  border: 5px white solid
}
