body {
  font-family: "Comic Sans MS", sans-serif;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: rgb(238,174,202);
  background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
  flex-direction: column;
}

#replay-btn, #avg-score, #timer, #reset-highscore, #react-space{
  display: none;
}
h1{
  color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
#react-space {
  width: 50%;
  height: 500px;
  border: 2px solid black;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.5);
  background-color: white;
  border-radius: 5px;
  position: relative;
}

.shape {
  cursor: pointer;
  position: absolute;
  border: 1px solid black;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

#square {
  border-radius: 0%;
}

button {
  padding: 10px 20px;
  font-size: 18px;
  color: white;
  border: 2px solid white;
  border-radius: 5px;
  cursor: pointer;
  transition: all ease 0.5s;
}

#start, #replay-btn {
  background-color: rgb(8, 176, 8);
}
#start:hover, #replay-btn:hover {
  background-color: green;
}

#times-list {
  margin-top: 20px;
}
ul {
  margin: auto;
  padding: 0;
  list-style-type: none;
}

#reset-highscore{
  font-size: 12px;
  background-color: red;
  margin-bottom: 10px ;
}
