body {
  width: 490px;
  margin: 0 auto;
}

main {
  margin: 1em;
  border: 1px solid lightgray;
  border-radius: 5px;
  width: 100%;
}

img {
  width: 100%;
}

.title {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid lightgray;
  display: block;
}

.description {
  margin-left: 10px;
  text-align: center;
}

.scores {
  display: block;
  text-align: center;
  font-size: 3rem;
}

.draw-score {
  font-size: 4.5rem;
}

.button {
  width: 300px;
  height: 50px;
  border-radius: 5px;
}

.controls {
  display: flex;
  justify-content: space-evenly;
}

#button-score-player-1 {
  background-color: green;
  color: white;
}

#button-score-player-2 {
  background-color: blue;
  color: white;
}

#button-reset {
  background-color: red;
  color: white;
}

.hide {
  display: none;
}