 /*we made this almost look like a solitaire game from the colors */ 
body {
background-color: green;
  color: white;
}

button {
padding: 8px;
  background-color: red;
  border: 2px solid black;
  box-shadow: 0px 8px 5px darkgreen;
  font-size: 1.2rem;
  color: white;
}

p {
font-size: 1.4rem;
  font-family:'Metamorphous', serif;
}

h1 {
font-size: 2rem;
  font-family:'Metamorphous', serif;
  text-shadow: 6px 4px 8px black;
}

button:hover{
  background-color: salmon;
}

button:focus{
  background-color: lightgray;
}

img {
margin-left: 180px;
  margin-top: 90px;
  border: 4px solid forestgreen;
 box-shadow: 10px 6px 6px darkgreen;
}
#Results {
color: yellow;
}

