/* Variables */
/* Estilos generales */
body {
  font-family: "Montserrat", sans-serif;
  background-color: #121212;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.primarybtn {
  padding: 0.6rem 1rem;
  background-color: #807cfe;
  border: none;
  outline: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 1rem;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.primarybtn:hover {
  background-color: #6c68df;
}
@media screen and (max-width: 1035px) {
  .primarybtn {
    font-size: 20px;
  }
}

.secondarybtn {
  padding: 0.6rem 1rem;
  background-color: transparent;
  border: 1px solid #f6f6ff;
  outline: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.secondarybtn:hover {
  background-color: rgba(255, 255, 255, 0.1254901961);
}
@media screen and (max-width: 1035px) {
  .secondarybtn {
    font-size: 18px;
    padding: 0.3rem 0.8rem;
  }
}

.scoreboard {
  max-width: 80%;
  margin: 10px auto;
  background-color: #1d1d1f;
  padding: 20px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.timer {
  text-align: center;
  margin-bottom: 20px;
}

.score {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 2rem 0;
}

.red-score,
.blue-score {
  width: 50%;
  text-align: center;
}

.wrestler-name {
  border: none;
  outline: none;
  color: #fdfdfd;
  font-size: 24px;
  background-color: transparent;
  text-align: center;
}

h2,
h3 {
  margin: 0;
}

h2 {
  color: #f4f4f4;
  font-size: 100px;
  font-weight: bold;
  margin-bottom: 10px;
}

.Score {
  font-size: 36px;
  font-weight: bold;
  color: #eeeeee;
  padding: 3rem 1rem;
  border-radius: 10px;
  margin: 1rem;
}

.Score-blue {
  background-color: #0101bb;
}

.Score-red {
  background-color: #bb0101;
}

.red-score,
.blue-score {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.score-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.score-button {
  font-size: 16px;
  padding: 5px 10px;
  margin: 5px 5px;
  border: none;
  border-radius: 8px;
  background-color: #EEEEEE;
  color: #1e1e1e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.score-button:hover {
  background-color: #DDDDDD;
}
.score-button i {
  margin-right: 5px;
}

footer {
  width: 100%;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.restart_score {
  margin: 1rem auto;
  background-color: #ffd70c;
  color: #000000;
  padding: 0.5rem;
  border: none;
  outline: none;
  width: 100%;
  font-size: 28px;
}