@font-face {
  font-family: fontTitle;
  src: url(../fonts/Montserrat-Medium.ttf);
}

@font-face {
  font-family: fontText;
  src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
  font-family: fontQuestion;
  src: url(../fonts/Montserrat-Bold.ttf);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
}

body {
  background: url("../images/backgrounds/bgMovil.svg") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.loader {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
  border: solid 2vmin transparent;
  border-radius: 50%;
  border-right-color: #BF1724;
  border-top-color: #BF1724;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 20vmin;
  left: calc(50% - 10vmin);
  position: fixed;
  top: calc(50% - 10vmin);
  width: 20vmin;
  z-index: 1;
}

.loader:before {
  -webkit-animation: spin 2s infinite linear;
          animation: spin 2s infinite linear;
  border: solid 2vmin transparent;
  border-radius: 50%;
  border-right-color: white;
  border-top-color: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
  height: 16vmin;
  left: 0;
  position: absolute;
  top: 0;
  width: 16vmin;
}

.loader:after {
  -webkit-animation: spin 3s infinite linear;
          animation: spin 3s infinite linear;
  border: solid 2vmin transparent;
  border-radius: 50%;
  border-right-color: black;
  border-top-color: black;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
  height: 12vmin;
  left: 2vmin;
  position: absolute;
  top: 2vmin;
  width: 12vmin;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.loader-hidden {
  display: none;
}

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}

.info .logo-libro {
  width: 16.25rem;
  height: 2.5rem;
  margin-bottom: 30px;
}

.info .info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 1rem;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  width: 80%;
}

.info .info-container .tapa-libro {
  width: 9rem;
  border-radius: 5px;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
}

.info .info-container .container-datos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.info .info-container .container-datos .info-title {
  font-family: fontTitle;
  font-size: 1.1rem;
  color: black;
}

.info .info-container .container-datos .info-chapter {
  font-family: fontText;
  font-size: 1rem;
  color: #ffc121;
}

.info .info-container .container-datos .info-text {
  font-family: fontText;
  font-size: 1rem;
  color: white;
}

.info .info-container .container-datos .play-h {
  display: none;
}

.info .info-container .container-datos .play-h .circulo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.25rem solid white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.info .info-container .container-datos .play-h .circulo .circulo-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 0.25rem dashed white;
  border-right: 0.25rem dashed white;
  border-left: 0.25rem solid white;
  border-bottom: 0.25rem solid white;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  -webkit-animation: rotation 8s infinite linear;
          animation: rotation 8s infinite linear;
}

.info .info-container .container-datos .play-h .circulo .circulo-2:hover {
  border-color: #ffc121;
}

.info .info-container .container-datos .play-h .circulo .svg-play {
  width: 1rem;
}

.info .play-h {
  display: none;
  position: relative;
}

.info .play-h .circulo {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.25rem solid white;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
}

.info .play-h .circulo .circulo-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.25rem solid white;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border-top: 0.25rem dashed white;
  border-right: 0.25rem dashed white;
  border-left: 0.25rem solid white;
  border-bottom: 0.25rem solid white;
  -webkit-animation: rotation 8s infinite linear;
          animation: rotation 8s infinite linear;
}

.info .play-h .circulo .circulo-2:hover {
  border-color: #ffc121;
}

.info .play-h .circulo .svg-play {
  position: absolute;
  width: 1rem;
}

.play .circulo {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.25rem solid white;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
}

.play .circulo .circulo-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.25rem solid white;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border-top: 0.25rem dashed white;
  border-right: 0.25rem dashed white;
  border-left: 0.25rem solid white;
  border-bottom: 0.25rem solid white;
  -webkit-animation: rotation 6s infinite linear;
          animation: rotation 6s infinite linear;
}

.play .circulo .circulo-2:hover {
  border-color: #ffc121;
}

.play .circulo .svg-play {
  position: absolute;
  width: 1.1rem;
}

.info-hidden {
  display: none;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

.play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 2.7rem;
  background-color: #aa1621;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
  position: absolute;
  top: 0;
}

.nav .nav-logo-aces {
  width: 2.5rem;
  margin-left: 0.8rem;
}

.nav .nav-logo-libro {
  width: 9.5rem;
}

.nav .nav-logo-libro-hidden {
  display: none;
}

.nav .nav-sound-on {
  cursor: pointer;
  width: 2rem;
  margin-right: 0.8rem;
}

.nav .nav-sound-on-hidden {
  display: none;
}

.nav .nav-sound-off {
  cursor: pointer;
  width: 2rem;
  margin-right: 0.8rem;
}

.nav .nav-sound-off-hidden {
  display: none;
}

.start-game-hidden {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.start-game {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.start-game .img-question {
  width: 100%;
  height: 11rem;
  border-radius: 15px;
  background-size: cover;
  margin-top: 2rem;
  -webkit-box-shadow: 0px 0px 0.5rem rgba(255, 255, 255, 0.5);
          box-shadow: 0px 0px 0.5rem rgba(255, 255, 255, 0.5);
}

.start-game .timer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.start-game .timer .number-question {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: fontText;
  color: #ffc121;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.start-game .timer .progress-container {
  width: 100%;
  border: 0.1rem outset #ffeded;
  border-radius: 0.25rem;
  margin: 0.125rem 0 0.625rem 0;
  background-color: white;
}

.start-game .timer .progress-container .progress {
  width: 0%;
  height: 0.25rem;
  border-radius: 0.3rem;
  background-color: #ffc121;
}

.start-game .options .option {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  width: 16rem;
  height: 2.2rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  color: white;
  font-family: fontQuestion;
  -webkit-box-shadow: inset 0px 1px 10px 1px rgba(255, 255, 255, 0.3);
          box-shadow: inset 0px 1px 10px 1px rgba(255, 255, 255, 0.3);
}

.start-game .options .correct {
  background-color: #8ECC41;
  -webkit-animation: parpadeo 0.5s infinite;
          animation: parpadeo 0.5s infinite;
  -webkit-box-shadow: inset 0px 1px 10px 1px rgba(255, 255, 255, 0.3);
          box-shadow: inset 0px 1px 10px 1px rgba(255, 255, 255, 0.3);
}

.start-game .options .incorrect {
  background-color: #F27449;
  -webkit-animation: parpadeo 0.8s infinite;
          animation: parpadeo 0.8s infinite;
  -webkit-box-shadow: inset 0px 1px 10px 1px rgba(255, 255, 255, 0.3);
          box-shadow: inset 0px 1px 10px 1px rgba(255, 255, 255, 0.3);
}

parpadeo {
  -webkit-animation-name: parpadeo;
          animation-name: parpadeo;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes parpadeo {
  0% {
    opacity: 1.0;
  }
  40% {
    opacity: 0.8;
  }
}

@keyframes parpadeo {
  0% {
    opacity: 1.0;
  }
  20% {
    opacity: 0.7;
  }
}

.game-over-hidden {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.game-over {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
  font-family: fontQuestion;
}

.game-over .container-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
  gap: 1.3rem;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1rem;
}

.game-over .container-result .result-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.3rem;
  color: white;
}

.game-over .container-result .final-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.game-over .container-result .final-points .svg-star-end {
  -webkit-animation: rotateStarEnd 1s linear;
          animation: rotateStarEnd 1s linear;
  width: 6rem;
}

.game-over .container-result .final-points .points {
  position: absolute;
  color: white;
  font-size: 3rem;
}

.game-over .container-result .star-points {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.game-over .container-result .star-points img {
  margin: 0.26rem;
  width: 1.8rem;
  -webkit-animation: rotate 1.3s 1 linear;
          animation: rotate 1.3s 1 linear;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0) scale(0);
            transform: rotate(0) scale(0);
  }
  50% {
    -webkit-transform: rotate(160deg) scale(1.2);
            transform: rotate(160deg) scale(1.2);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0) scale(0);
            transform: rotate(0) scale(0);
  }
  50% {
    -webkit-transform: rotate(160deg) scale(1.2);
            transform: rotate(160deg) scale(1.2);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

.game-over .container-result .replay .circulo {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.25rem solid white;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
}

.game-over .container-result .replay .circulo .circulo-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.25rem solid white;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border-top: 0.25rem dashed white;
  border-right: 0.25rem dashed white;
  border-left: 0.25rem solid white;
  border-bottom: 0.25rem solid white;
  -webkit-animation: rotation 4s infinite linear;
          animation: rotation 4s infinite linear;
}

.game-over .container-result .replay .circulo .circulo-2:hover {
  border-color: #ffc121;
}

.game-over .container-result .replay .circulo .svg-replay {
  position: absolute;
  width: 1.5rem;
  margin: 1rem;
}

@-webkit-keyframes rotateStarEnd {
  0% {
    -webkit-transform: rotate(0) scale(4);
            transform: rotate(0) scale(4);
  }
  50% {
    -webkit-transform: rotate(160deg) scale(2);
            transform: rotate(160deg) scale(2);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

@keyframes rotateStarEnd {
  0% {
    -webkit-transform: rotate(0) scale(4);
            transform: rotate(0) scale(4);
  }
  50% {
    -webkit-transform: rotate(160deg) scale(2);
            transform: rotate(160deg) scale(2);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

.star-container {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.star-container img {
  width: 2rem;
}

.star-container .rotate {
  -webkit-animation: rotate 1.3s 1 linear;
          animation: rotate 1.3s 1 linear;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0) scale(0);
            transform: rotate(0) scale(0);
  }
  50% {
    -webkit-transform: rotate(160deg) scale(2);
            transform: rotate(160deg) scale(2);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

.star-container .imgStarsEnd {
  width: 1.8rem;
}

@media (min-width: 400px) {
  * {
    font-size: 14px;
  }
}

/*movil horizontal*/
@media (min-width: 550px) and (orientation: landscape) {
  * {
    font-size: 16px;
  }
  body {
    background: url("../images/backgrounds/bgMovilHor.svg") no-repeat center;
    background-size: cover;
  }
  .nav {
    height: 2.5rem;
  }
  .nav .nav-logo-aces {
    width: 2.5rem;
  }
  .nav .nav-sound-on {
    width: 2rem;
  }
  .nav .nav-sound-off {
    width: 2rem;
  }
  .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
  }
  .info .info-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 80%;
  }
  .info .info-container .tapa-libro {
    width: 9rem;
  }
  .start-game {
    row-gap: 1rem;
    -webkit-column-gap: 4rem;
            column-gap: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .start-game .img-question {
    height: 10rem;
  }
  .star-container {
    width: 100%;
    margin-top: 1rem;
  }
  .game-over {
    height: 100%;
  }
  .game-over .container-result {
    width: 60%;
  }
  .game-over .container-result .final-points .svg-star-end {
    width: 6rem;
  }
  .game-over .container-result .final-points .points {
    font-size: 2.8rem;
  }
}

/*tablet*/
@media (min-width: 768px) and (orientation: portrait) {
  * {
    font-size: 24px;
  }
  body {
    background: url("../images/backgrounds/bgTablet.svg") no-repeat center;
    background-size: cover;
  }
  .info .info-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
    width: 70%;
  }
  .info .info-container .tapa-libro {
    width: 9rem;
  }
  .start-game {
    gap: 2rem;
  }
  .start-game .img-question {
    height: 11rem;
  }
  .start-game .options .option {
    width: 17.5rem;
  }
  .star-container {
    width: 60%;
  }
  .game-over .container-result .final-points .svg-star-end {
    width: 7rem;
  }
  .game-over .container-result .star-points {
    width: 80%;
  }
  .game-over .container-result .star-points img {
    width: 2rem;
  }
}

@media (min-width: 1024px) {
  * {
    font-size: 20px;
  }
  body {
    background: url("../images/backgrounds/bgDesktop.svg") no-repeat center;
    background-size: cover;
  }
  .info .info-container {
    width: 60%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 1rem;
            column-gap: 1rem;
    padding: 1.5rem;
  }
  .info .info-container .container-datos .info-title {
    font-size: 1.4rem;
  }
  .start-game {
    row-gap: 3rem;
    -webkit-column-gap: 5rem;
            column-gap: 5rem;
  }
  .game-over .container-result {
    width: 50%;
    height: 70%;
  }
  .game-over .container-result .final-points .svg-star-end {
    width: 7rem;
  }
  .game-over .container-result .star-points img {
    width: 2rem;
  }
}

@media (min-width: 1300px) {
  * {
    font-size: 22px;
  }
  body {
    background: url("../images/backgrounds/bgDesktopFull.svg") no-repeat center;
    background-size: cover;
  }
  .info .info-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 50%;
    -webkit-column-gap: 3rem;
            column-gap: 3rem;
    padding: 1.5rem;
  }
  .info .info-container .tapa-libro {
    width: 9.5rem;
  }
  .info .info-container .container-datos .info-title {
    font-size: 1.4rem;
  }
  .game-over .container-result {
    width: 40%;
    height: 70%;
  }
  .game-over .container-result .final-points .svg-star-end {
    width: 7rem;
  }
  .game-over .container-result .star-points img {
    width: 2rem;
  }
}
/*# sourceMappingURL=style.css.map */