div {
  width: 50%;
  margin: auto;
}
body {
  background-color: rgb(219, 216, 216);
}
.scores {
  height: auto;
  width: 90%;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.scores div h4 {
  margin: auto;
  text-align: center;
  height: 90px;
  width: 90px;
  font-size: 77px;
  border-radius: 50%;
  outline: solid 6px rgb(45, 231, 154);
}
.scores div p {
  margin-top: 0px;
  font-size: 22px;
  color: rgb(87, 87, 87);
  font-weight: bold;
  text-align: center;
}
.table {
  margin: auto;
  display: flex;
}
.table > div {
  height: 460px;
  width: 50%;
  outline: rgb(83, 206, 206) solid 2px;
  margin: 4px;
}
.play-button .reset-button {
  width: 50%;
  margin-top: 3px;
  height: 45px;
}
.play-button div {
  width: 50%;
  margin-top: 12px;
  text-align: center;
  font-size: 30px;
  background: linear-gradient(
    90deg,
    rgba(116, 213, 38, 1) 0%,
    rgba(33, 149, 140, 1) 47%,
    rgba(226, 123, 128, 1) 100%
  );
  border-radius: 20px;
  color: rgb(197, 202, 206);
  transition: all 0.2s ease-in-out;
}
.play-button div:hover {
  transform: scale(1.1);
}

.play-button div:active {
  transform: scale(0.98);
  box-shadow: 4px 3px 23px 2px rgba(35, 81, 167, 0.24);
}
.reset-button div:hover {
  transform: scale(1.1);
}
.reset-button div:active {
  transform: scale(0.98);
  box-shadow: 4px 3px 23px 2px rgba(35, 81, 167, 0.24);
}
.reset-button div {
  margin-top: 18px;
  text-align: center;
  font-size: 30px;
  background: linear-gradient(
    90deg,
    rgb(255, 16, 8) 0%,
    rgb(228, 105, 105) 47%,
    rgb(92, 1, 1) 100%
  );
  border-radius: 20px;
  color: rgb(197, 202, 206);
  transition: all 0.2s ease-in-out;
}
.header h1 {
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  color: #222;
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
}
.header h1 span {
  margin-top: 5px;
  font-size: 15px;
  color: #444;
  word-spacing: 1px;
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-weight: 500;

  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 27px 0;
  grid-gap: 20px;
  align-items: center;
}

.header h1 span:after,
.header h1 span:before {
  content: " ";
  display: block;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  height: 5px;
  background-color: #f8f8f8;
}
#computer > h4 {
  outline: solid 7px rgb(54, 94, 226);
}
.message {
  margin: auto;
  text-align: center;
  font-size: 30px;
  color: rgb(87, 92, 90);
}

@media screen and (max-width: 900px) {
  div {
    width: 100%;
  }
  .reset-button div {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  div {
    width: 100%;
  }
  .reset-button div {
    width: 84%;
  }
  .play-button div {
    width: 76%;
  }
  .header h1 {
    font-size: 60px;
  }
  .table > div {
    height: 320px;
  }
}
