* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url("../Assetts/images/fondo.jpg");
  background-size: cover;
  font-size: 1rem;
  min-height: 80vh;
  padding: 0.8em 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6em;
  font-family: "Roboto Flex", sans-serif;
}

.btnPuntaje {
  width: 240px;
  font-size: 1.15em;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 6px;
}

.btnJugar {
  background: none;
  outline: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: #e6e6e6;
  outline: 1px solid #1a1a1a;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  z-index: 20;
  color: #1a1a1a;
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: 2px;
}

.btnJugar:hover {
  background-color: #eeeeee;
}

.btnJugar.oculto {
  display: none;
}

.panelJuego {
  font-size: 1rem;
  color: #fff;
}
.panelJuego__status {
  display: flex;
  font-size: 1.5em;
  gap: 10px;
  font-weight: 600;
}
.panelJuego__status p {
  margin: 0;
}
.panelJuego__configuraciones .btnSonido {
  width: 45px;
  height: 38px;
  font-size: 1.1em;
  color: white;
  outline: none;
}

.tablero {
  background-color: gray;
  margin: 0 auto;
  display: grid;
  width: 440px;
  height: 440px;
  grid-template-columns: repeat(2, 50%);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.tablero__cuadro.azul {
  background: #0000dd;
}
.tablero__cuadro.azul.resaltado {
  background: #3838fa;
  opacity: 1;
}
.tablero__cuadro.verde {
  background: #00a300;
}
.tablero__cuadro.verde.resaltado {
  background: #13d613;
  opacity: 1;
}
.tablero__cuadro.rojo {
  background: #eb0000;
}
.tablero__cuadro.rojo.resaltado {
  background: #ff4141;
  opacity: 1;
}
.tablero__cuadro.amarillo {
  background: #c5c500;
}
.tablero__cuadro.amarillo.resaltado {
  background: #ffff44;
  opacity: 1;
}

.bodyPuntaje {
  justify-content: flex-start;
  padding: 2em 0;
  gap: 2em;
}

.btnVolver {
  width: 240px;
  font-size: 1.15em;
  font-weight: 500;
  border-radius: 6px;
  letter-spacing: 1px;
}

.puntajes {
  font-size: 1rem;
  width: 600px;
  min-height: 200px;
  max-height: 500px;
  overflow-y: scroll;
  margin: 0 auto;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 1.4em;
}
.puntajes__header {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 25%);
  border-bottom: solid 1px #a5a5a5;
  font-size: 1.3em;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}
.puntajes__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.puntajes__container__item {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 25%);
  font-size: 1.1em;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.puntajes__container__item .puesto {
  font-weight: 700;
  font-size: 1.15em;
}

@media only screen and (max-width: 575px) {
  .tablero {
    width: 350px;
    height: 350px;
  }

  .panelJuego {
    font-size: 0.85rem;
  }

  .btnPuntaje {
    font-size: 1em;
  }

  .puntajes {
    width: 100%;
    font-size: 0.9rem;
    max-height: 400px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tablero {
    width: 400px;
    height: 400px;
  }

  .panelJuego {
    font-size: 0.9rem;
  }

  .puntajes {
    width: 100%;
    max-height: 500px;
  }
}

/*# sourceMappingURL=styles.css.map */
