.instructions {
  color: white;
  text-align: center;
  width: 100%;
  font-size: 20px;
  padding-bottom: 10px;
}

.scores {
  color: white;
  font-size: 28px;
  width: 15%;
  margin-bottom: 15px;
  position: absolute;
  border: 4px solid red;
  background-color: lightseagreen;
  top: 48%;
  left: 52%;
}

.scores .text {
  text-align: center;
}

.indicator {
  position: absolute;
  left: 65%;
  top: 52%;
  margin-left: 100px;
}

.indicator .start-button {
  font-size: 32px;
  background-color: rgb(0, 255, 0);
  opacity: 0.6;
  transition: 0.3s;
  border: none;
  padding: 15px 20px;
  border-radius: 25px;
  outline: none;
}

.indicator .text {
  color: white;
  font-size: 48px;
  border: thick solid red;
  padding: 30px 20px;
  background-color: lightseagreen;
  border-radius: 25px;
}

.start-button:hover {
  opacity: 1;
  cursor: pointer;
}

.attribution {
  color: white;
  position: absolute;
  bottom: 5px;
  left: 21%;
  text-align: center;
}

.attribution .link:hover {
  text-decoration: underline;
}

.attribution .link {
  color: #42b983;
  text-decoration: none;
}

.winner-list {
  position: absolute;
  top: 75%;
  left: 52%;
  border-radius: 25px;
  background-color: rgba(153, 50, 204, 100);
  padding-left: 20px;
  padding-right: 20px;
  overflow: auto;
}

.winner-list-fixed {
  height: 121px;
  width: 646px;
}

.winner {
  margin-bottom: 10px;
}

.stop-button {
  position: absolute;
  top: 90%;
  left: 5%;
}

.stop-button .button {
  background-color: red;
  border: none;
  border-radius: 25px;
  font-size: 32px;
  opacity: 0.6;
  transition: 0.3s;
  color: black;
  padding: 10px 35px;
  outline: none;
}

.stop-button .button:hover {
  opacity: 1;
  cursor: pointer;
}
