body{
background-color:dimgray;
text-align:center;
}
h1{
color:ivory;
font-family:cursive;
font-size: 28px;
}
p{
color:white; 
font-family:monospace;
font-size: 16px;
}
.button{
  display:inline-block;
  padding: 12px 20px;
  background-color:green;
  color:black;
  text-decoration:none;
  font-size:16px;
  border-radius:10px;
}
.button:hover{
  background-color:greenyellow;
}
