h1 {
  text-align: center;
  font-size: 400%;
  font-family: 'Righteous', cursive;
  text-shadow: 0px 0px 5px indianred;
}
button {
  display: inline-flex;
  margin: 10px 20px;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 1px 1px 5px rgba(176, 88, 34, 0.927);
  /* border: solid rgba(238, 140, 79, 0.927) 2px; */
  text-shadow: 0px 0px 1px indianred;
  /* background-color: rgba(255, 150, 85, 0.968); */
}
button:hover {
  opacity: 0.5;
}
.menu {
  text-align: center;
}
.score {
  font-family: 'Righteous', cursive;
  text-shadow: 0px 0px 5px indianred;
}
.ready {
  font-size: larger;
  font-family: 'Karla', sans-serif;
}
.sequence {
  font-size: larger;
  font-family: 'Karla', sans-serif;
}
.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.button {
  height: 200px;
  width: 200px;
  margin: 5px;
}
.button:hover {
  opacity: 0.5;
}
#button1 {
  border-radius: 100% 0 0 0;
  background-color: green;
  border: 4px solid darkgreen;
  justify-self: right;
  box-shadow: 1px 1px 4px black, 0 0 25px green, 0 0 5px darkgreen;
}
#button2 {
  border-radius: 0 100% 0 0;
  background-color: red;
  border: 4px solid darkred;
  box-shadow: 1px 1px 4px black, 0 0 25px red, 0 0 5px darkred;
  justify-self: left;
}
#button4 {
  border-radius: 0 0 0 100%;
  background-color: rgba(255, 225, 0, 0.961);
  border: 4px solid goldenrod;
  box-shadow: 1px 1px 4px black, 0 0 25px rgba(255, 225, 0, 0.961),
    0 0 5px goldenrod;
  justify-self: right;
}
#button3 {
  border-radius: 0 0 100% 0;
  background-color: blue;
  border: 4px solid darkblue;
  box-shadow: 1px 1px 4px black, 0 0 25px blue, 0 0 5px darkblue;
}
.youwon {
  text-align: center;
}
img {
  visibility: hidden;
  margin: 50px 0;
  border-radius: 30%;
  text-align: center;
}
