.oscuro {
  background-image: url("../imagenes/fondo-oscuro.png");
}
.oscuro nav {
  border-bottom: solid 2px #706f6f;
}
.oscuro nav .boton-hamburguesa i {
  color: white;
}
.oscuro nav .modal-menu {
  background-color: rgba(87, 85, 85, 0.562);
}
.oscuro nav .modal-menu .fa-window-close {
  color: white;
}
.oscuro nav .modal-menu .buttons-nav li button {
  background-color: rgba(87, 85, 85, 0.562);
  color: white;
}
.oscuro #formulario-busqueda #input-busqueda {
  color: white;
}
.oscuro #formulario-busqueda #input-busqueda::placeholder {
  color: white;
}
.oscuro #formulario-busqueda .contenedor-select label {
  color: white;
}
.oscuro #formulario-busqueda .contenedor-select select {
  color: #b8afaf;
}
.oscuro .tarjeta-brawler {
  background-color: white;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.oscuro .tarjeta-brawler h3 {
  color: #312f2f;
}
.oscuro #descripcion .contenedor-principal {
  box-shadow: rgba(255, 255, 255, 0.336) 0px 5px 15px 0px;
  background-color: rgba(253, 251, 251, 0.808);
}
.oscuro #descripcion #seccion-star-powers {
  box-shadow: rgba(255, 255, 255, 0.336) 0px 5px 15px 0px;
  background-color: rgba(253, 251, 251, 0.808);
}
.oscuro #descripcion #seccion-gadgets {
  box-shadow: rgba(255, 255, 255, 0.336) 0px 5px 15px 0px;
  background-color: rgba(253, 251, 251, 0.808);
}
.oscuro #descripcion #seccion-videos {
  box-shadow: rgba(255, 255, 255, 0.336) 0px 5px 15px 0px;
  background-color: rgba(253, 251, 251, 0.808);
}
.oscuro #seccion-modos-juego h2 {
  color: white;
}
.oscuro .seccion-descripcion-modo h2 {
  color: white;
}
.oscuro .seccion-descripcion-modo .descripcion-modo {
  color: white;
}
.oscuro footer {
  background-color: transparent;
  border-top: solid 2px #706f6f;
}

body {
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  padding: 0%;
}

li {
  list-style: none;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../imagenes/fondo-claro.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center top;
  font-family: "Roboto", sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
}

header {
  width: 100%;
  height: 500px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-image: url(../imagenes/principal.jpg);
  background-size: cover;
  background-position: center;
}

nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  height: 80px;
  background-color: transparent;
  border-bottom: solid 1px #706f6f;
}
nav .logo {
  width: 120px;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
nav img {
  width: 100%;
}
nav .boton-hamburguesa {
  width: 40px;
  height: 40px;
  border: none;
  background-color: transparent;
  margin-right: 15px;
}
nav .boton-hamburguesa i {
  color: #706f6f;
  font-size: 24px;
}
nav .modal-menu {
  width: 200px;
  height: 100%;
  display: none;
  background-color: rgba(255, 255, 255, 0.753);
  position: fixed;
  z-index: 1;
  top: 0px;
  right: 0px;
  overflow: hidden;
}
nav .modal-menu .fa-window-close {
  font-size: 22px;
  margin: 10px;
}
nav .modal-menu .buttons-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
}
nav .modal-menu .buttons-nav li button {
  width: 100%;
  background-color: white;
  border: none;
  color: #312f2f;
  font-family: "Teko", sans-serif;
  font-size: 24px;
  margin: 5px;
  border-radius: 3px;
}

.seccion-principal-brawlers {
  max-width: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.seccion-principal-brawlers .contenedor-tarjetas-brawlers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tarjeta-brawler {
  width: 200px;
  margin: 20px;
  background-color: black;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.tarjeta-brawler h3 {
  color: white;
  margin: 15px;
  font-weight: 600;
  font-family: "Teko", sans-serif;
  font-size: 32px;
  letter-spacing: 3px;
}

.tarjeta-brawler:hover {
  transform: translateY(-15px);
  transition: all 0.3s;
}

#descripcion {
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
}
#descripcion .contenedor-principal {
  width: 70%;
  max-width: 1400px;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #312f2f;
  font-family: "Roboto", sans-serif;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  display: flex;
}
#descripcion .contenedor-img-principal-descripcion {
  width: 180px;
  overflow: hidden;
  margin: 20px;
}
#descripcion .contenedor-img-principal-descripcion .img-principal-descripcion {
  width: 100%;
}
#descripcion .info-principal-descripcion {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#descripcion .info-principal-descripcion h2 {
  font-family: "Teko", sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  margin: 0%;
}
#descripcion .info-principal-descripcion #rarity-descripcion {
  background-color: black;
  border-radius: 3px;
  padding: 3px;
  width: 150px;
}
#descripcion .info-principal-descripcion p {
  margin-top: 3px;
  margin-bottom: 12px;
  width: 95%;
}

#seccion-star-powers {
  width: 70%;
  max-width: 1400px;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #312f2f;
  font-family: "Roboto", sans-serif;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  display: flex;
  flex-direction: column;
}
#seccion-star-powers h2 {
  font-family: "Teko", sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  margin: 0%;
  padding-left: 20px;
}
#seccion-star-powers .item div {
  display: flex;
  padding-left: 20px;
}
#seccion-star-powers .item div .img-item {
  width: 40px;
  height: 40px;
  overflow: hidden;
  padding: 10px;
}
#seccion-star-powers .item div .img-item img {
  width: 100%;
}
#seccion-star-powers .item div .nombre-item {
  font-family: "Teko", sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  margin: 0%;
  text-shadow: 0px 0px 5px rgba(252, 227, 6, 0.46);
  font-size: 30px;
  letter-spacing: 0px;
  margin-top: 10px;
}
#seccion-star-powers .item .descripcion-item {
  width: 90%;
  margin-left: 30px;
  font-family: "Roboto", sans-serif;
  margin-top: 0%;
}

#seccion-gadgets {
  width: 70%;
  max-width: 1400px;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #312f2f;
  font-family: "Roboto", sans-serif;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  display: flex;
  flex-direction: column;
}
#seccion-gadgets h2 {
  font-family: "Teko", sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  margin: 0%;
  padding-left: 20px;
}
#seccion-gadgets .item div {
  display: flex;
  padding-left: 20px;
}
#seccion-gadgets .item div .img-item {
  width: 40px;
  height: 40px;
  overflow: hidden;
  padding: 10px;
}
#seccion-gadgets .item div .img-item img {
  width: 100%;
}
#seccion-gadgets .item div .nombre-item {
  font-family: "Teko", sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  margin: 0%;
  text-shadow: 0px 0px 5px rgba(15, 231, 55, 0.685);
  font-size: 30px;
  letter-spacing: 0px;
  margin-top: 10px;
}
#seccion-gadgets .item .descripcion-item {
  width: 90%;
  margin-left: 30px;
  font-family: "Roboto", sans-serif;
  margin-top: 0%;
}

#seccion-videos {
  width: 70%;
  max-width: 1400px;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #312f2f;
  font-family: "Roboto", sans-serif;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  display: flex;
  flex-direction: column;
}
#seccion-videos h2 {
  font-family: "Teko", sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  margin: 0%;
  padding-left: 20px;
}
#seccion-videos .item div {
  display: flex;
  padding-left: 20px;
}
#seccion-videos .item div .img-item {
  width: 40px;
  height: 40px;
  overflow: hidden;
  padding: 10px;
}
#seccion-videos .item div .img-item img {
  width: 100%;
}
#seccion-videos .item div .nombre-item {
  font-family: "Teko", sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  margin: 0%;
  text-shadow: 0px 0px 5px rgba(15, 146, 253, 0.685);
  font-size: 30px;
  letter-spacing: 0px;
  margin-top: 10px;
}
#seccion-videos .item .descripcion-item {
  width: 90%;
  margin-left: 30px;
  font-family: "Roboto", sans-serif;
  margin-top: 0%;
}
#seccion-videos #contenedor-videos {
  display: flex;
  justify-content: space-around;
}
#seccion-videos #contenedor-videos div {
  flex-direction: column;
}
#seccion-videos #contenedor-videos .video-item {
  padding-left: 0;
}
#seccion-videos #contenedor-videos .video-item video {
  width: 200px;
  border: solid 10px black;
}
#seccion-videos #contenedor-videos .descripcion-item {
  margin-left: 20px;
}

#seccion-star-powers {
  display: none;
}

#seccion-gadgets {
  display: none;
}

#seccion-videos {
  display: none;
}

@media screen and (max-width: 700px) {
  #seccion-descripcion {
    width: 90%;
  }

  #seccion-videos #contenedor-videos {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .contenedor-principal {
    flex-direction: column;
    width: 100%;
  }

  #descripcion .contenedor-principal {
    width: 90%;
  }
  #descripcion .info-principal-descripcion {
    width: 90%;
    padding-left: 20px;
  }
  #descripcion .info-principal-descripcion .contenedor-principal {
    width: 90%;
  }

  #seccion-star-powers {
    width: 90%;
  }

  #seccion-gadgets {
    width: 90%;
  }

  #seccion-videos {
    width: 90%;
  }
}
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #312f2f;
  color: white;
  font-family: "Roboto", sans-serif;
}
footer .body-footer {
  width: 100%;
  display: flex;
  justify-content: center;
}
footer .body-footer .column-footer {
  width: 40%;
  margin-left: 30px;
}
footer .body-footer .column-footer h2 {
  letter-spacing: 2px;
  margin-bottom: 0%;
  font-family: "Teko", sans-serif;
}

.colaboradores .tag {
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: white;
  color: #312f2f;
  overflow: hidden;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  margin-bottom: 10px;
}
.colaboradores .tag img {
  width: 40px;
  padding: 5px;
  background-image: linear-gradient(#d60000 0%, #fc3737 51%, #fa8e8e 100%);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-right: 3px;
}

.redes li {
  color: white;
  font-size: 14px;
}
.redes li i {
  color: white;
  background-color: rgba(128, 128, 128, 0.397);
  border-radius: 50px;
  padding: 10px;
  margin-bottom: 10px;
  margin-right: 20px;
  font-size: 16px;
}
.redes li i:hover {
  background-color: rgba(255, 255, 255, 0.541);
}

.footer-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../imagenes/fondo.png");
  color: #312f2f;
}
.footer-footer ul {
  width: 40%;
  display: flex;
  align-items: center;
  color: white;
  margin-left: 20px;
}
.footer-footer .tag {
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: white;
  color: #312f2f;
  overflow: hidden;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  margin-left: 15px;
}
.footer-footer .tag img {
  width: 40px;
  padding: 5px;
  background-image: linear-gradient(#d60000 0%, #fc3737 51%, #fa8e8e 100%);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-right: 3px;
}
.footer-footer .tag img:hover {
  background: linear-gradient(#061efc 0%, #527ffc 51%, #9db2f8 100%);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

@media screen and (max-width: 700px) {
  footer .body-footer {
    flex-direction: column;
  }
  footer .body-footer .column-footer {
    width: 80%;
    display: flex;
    flex-direction: column;
  }
  footer .colaboradores {
    display: flex;
    margin-bottom: 0%;
  }
  footer .colaboradores .tag {
    width: 100px;
    height: 35px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    background-color: white;
    color: #312f2f;
    overflow: hidden;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    margin-right: 15px;
  }
  footer .colaboradores .tag img {
    width: 30px;
    padding: 5px;
    background-image: linear-gradient(#d60000 0%, #fc3737 51%, #fa8e8e 100%);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-right: 3px;
  }
  footer .footer-footer ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
  }
  footer .footer-footer ul .tag {
    width: 100px;
    height: 35px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    background-color: white;
    color: #312f2f;
    overflow: hidden;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    margin-left: 0%;
    margin-top: 5px;
  }
  footer .footer-footer ul .tag img {
    width: 30px;
    padding: 5px;
    background-image: linear-gradient(#d60000 0%, #fc3737 51%, #fa8e8e 100%);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-right: 3px;
  }
  footer .redes li {
    font-size: 12px;
  }
}
.paginado {
  width: 270px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 50px;
}
.paginado button {
  width: 50px;
  height: 33px;
  font-family: "Roboto", sans-serif;
  color: white;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  border: none;
  border-radius: 5px;
  background-image: linear-gradient(#d60000 0%, #fc3737 51%, #fa8e8e 100%);
}
.paginado button :hover {
  color: blue;
}

#formulario-busqueda {
  width: 95%;
  height: 150px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 30px;
}
#formulario-busqueda #input-busqueda {
  width: 50%;
  height: 30px;
  border: none;
  background: transparent;
  border-bottom: solid 1px #706f6f;
}
#formulario-busqueda #input-busqueda::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #312f2f;
}
#formulario-busqueda #boton-buscar {
  width: 10%;
  height: 33px;
  font-family: "Roboto", sans-serif;
  color: white;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  border: none;
  border-radius: 5px;
  background-image: linear-gradient(#d60000 0%, #fc3737 51%, #fa8e8e 100%);
}
#formulario-busqueda #boton-buscar:hover {
  background: linear-gradient(#061efc 0%, #527ffc 51%, #9db2f8 100%);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.contenedor-select {
  display: flex;
  justify-content: space-around;
}
.contenedor-select label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #706f6f;
  margin-right: 5px;
  margin-left: 10px;
}
.contenedor-select select {
  height: 30px;
  border: none;
  background-color: transparent;
  color: red;
  border-bottom: solid 1px #706f6f;
  margin-right: 15px;
  width: 100px;
}

@media screen and (max-width: 800px) {
  #formulario-busqueda {
    width: 95%;
  }
  #formulario-busqueda #boton-buscar {
    width: 12%;
    height: 33px;
    font-family: "Roboto", sans-serif;
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    border: none;
    border-radius: 5px;
    background-image: linear-gradient(#d60000 0%, #fc3737 51%, #fa8e8e 100%);
  }
}
@media screen and (max-width: 750px) {
  #formulario-busqueda {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  #formulario-busqueda #input-busqueda {
    width: 70%;
  }
  #formulario-busqueda #boton-buscar {
    width: 20%;
    height: 33px;
    font-family: "Roboto", sans-serif;
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    border: none;
    border-radius: 5px;
    background-image: linear-gradient(#d60000 0%, #fc3737 51%, #fa8e8e 100%);
  }
  #formulario-busqueda #input-busqueda::placeholder {
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  #formulario-busqueda #input-busqueda::placeholder {
    font-size: 10px;
  }
  #formulario-busqueda label {
    font-size: 12px;
  }
}
#contenedor-modal {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  background-color: rgba(128, 128, 128, 0.541);
  display: none;
}
#contenedor-modal #modal-busqueda {
  width: 300px;
  height: 350px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background: white;
}
#contenedor-modal #modal-busqueda .contenedor-img-busqueda {
  width: 300px;
  overflow: hidden;
}
#contenedor-modal #modal-busqueda .contenedor-img-busqueda img {
  width: 100%;
}
#contenedor-modal #modal-busqueda h2 {
  font-family: "Teko", sans-serif;
  text-align: center;
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 10px;
}
#contenedor-modal #modal-busqueda p {
  width: 90%;
  margin: auto;
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 14px;
}
#contenedor-modal #modal-busqueda .subtitulo {
  font-weight: 900;
  font-size: 16px;
}
#contenedor-modal #modal-busqueda #cerrar-modal {
  position: relative;
  bottom: 330px;
  left: 270px;
  border: none;
  background-color: transparent;
}
#contenedor-modal #modal-busqueda #cerrar-modal i {
  font-size: 18px;
  color: #706f6f;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #312f2f;
  color: white;
  font-family: "Roboto", sans-serif;
}
footer .body-footer {
  width: 100%;
  display: flex;
  justify-content: center;
}
footer .body-footer .column-footer {
  width: 40%;
  margin-left: 30px;
}
footer .body-footer .column-footer h2 {
  letter-spacing: 2px;
  margin-bottom: 0%;
  font-family: "Teko", sans-serif;
}

.colaboradores .tag {
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: white;
  color: #312f2f;
  overflow: hidden;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  margin-bottom: 10px;
}
.colaboradores .tag img {
  width: 40px;
  padding: 5px;
  background-image: linear-gradient(#d60000 0%, #fc3737 51%, #fa8e8e 100%);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-right: 3px;
}

.redes li {
  color: white;
  font-size: 14px;
}
.redes li i {
  color: white;
  background-color: rgba(128, 128, 128, 0.397);
  border-radius: 50px;
  padding: 10px;
  margin-bottom: 10px;
  margin-right: 20px;
  font-size: 16px;
}
.redes li i:hover {
  background-color: rgba(255, 255, 255, 0.541);
}

.footer-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../imagenes/fondo.png");
  color: #312f2f;
}
.footer-footer ul {
  width: 40%;
  display: flex;
  align-items: center;
  color: white;
  margin-left: 20px;
}
.footer-footer .tag {
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: white;
  color: #312f2f;
  overflow: hidden;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  margin-left: 15px;
}
.footer-footer .tag img {
  width: 40px;
  padding: 5px;
  background-image: linear-gradient(#d60000 0%, #fc3737 51%, #fa8e8e 100%);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-right: 3px;
}
.footer-footer .tag img:hover {
  background: linear-gradient(#061efc 0%, #527ffc 51%, #9db2f8 100%);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

@media screen and (max-width: 700px) {
  footer .body-footer {
    flex-direction: column;
  }
  footer .body-footer .column-footer {
    width: 80%;
    display: flex;
    flex-direction: column;
  }
  footer .colaboradores {
    display: flex;
    margin-bottom: 0%;
  }
  footer .colaboradores .tag {
    width: 100px;
    height: 35px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    background-color: white;
    color: #312f2f;
    overflow: hidden;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    margin-right: 15px;
  }
  footer .colaboradores .tag img {
    width: 30px;
    padding: 5px;
    background-image: linear-gradient(#d60000 0%, #fc3737 51%, #fa8e8e 100%);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-right: 3px;
  }
  footer .footer-footer ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
  }
  footer .footer-footer ul .tag {
    width: 100px;
    height: 35px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    background-color: white;
    color: #312f2f;
    overflow: hidden;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    margin-left: 0%;
    margin-top: 5px;
  }
  footer .footer-footer ul .tag img {
    width: 30px;
    padding: 5px;
    background-image: linear-gradient(#d60000 0%, #fc3737 51%, #fa8e8e 100%);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-right: 3px;
  }
  footer .redes li {
    font-size: 12px;
  }
}
#seccion-modos-juego {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 1400px;
  display: none;
}
#seccion-modos-juego h2 {
  font-family: "Teko", sans-serif;
  font-size: 42px;
}
#seccion-modos-juego .contenedor-modos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 100px;
}
#seccion-modos-juego .contenedor-modos .modo {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#seccion-modos-juego .contenedor-modos .modo p {
  width: 100px;
  text-align: center;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.959);
  font-family: "Teko", sans-serif;
  padding: 3px;
  border-radius: 2px;
}
#seccion-modos-juego .contenedor-modos .modo img {
  width: 100%;
}
#seccion-modos-juego .contenedor-modos .modo :hover {
  transform: scale(1.1);
  transition: all 0.3s;
}

.seccion-descripcion-modo {
  width: 70%;
  max-width: 1400px;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #312f2f;
  font-family: "Roboto", sans-serif;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  display: flex;
  flex-direction: column;
  display: none;
}
.seccion-descripcion-modo h2 {
  font-family: "Teko", sans-serif;
  font-size: 50px;
  color: #706f6f;
  margin: 10px 0px 0px 15px;
}
.seccion-descripcion-modo .descripcion-modo,
.seccion-descripcion-modo .tutorial-modo {
  width: 95%;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #706f6f;
  margin: 0px 0px 10px 15px;
  font-weight: bolder;
}
.seccion-descripcion-modo .contenedor-nombre-modo {
  display: flex;
  align-items: center;
}
.seccion-descripcion-modo .contenedor-nombre-modo .contenedor-icono-modo {
  width: 70px;
  margin: 10px;
}
.seccion-descripcion-modo .contenedor-nombre-modo .contenedor-icono-modo img {
  width: 100%;
}
.seccion-descripcion-modo .contenedor-nombre-modo .nombre-modo {
  font-family: "Teko", sans-serif;
  font-size: 36px;
  margin: 0px 0px 0px 10px;
  color: white;
}

.seccion-mapas {
  margin-top: 30px;
}
.seccion-mapas h2 {
  font-family: "Teko", sans-serif;
  font-size: 32px;
  color: white;
  padding: 5px;
  padding-left: 10px;
  margin: 20px 0px 20px 0px;
}
.seccion-mapas div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.seccion-mapas div .mapa {
  width: 150px;
}
.seccion-mapas div .mapa p {
  width: 90px;
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.534);
  padding: 5px;
  border-radius: 2px;
  color: white;
  text-align: center;
}
.seccion-mapas div .mapa .img-mapa {
  width: 140px;
}
.seccion-mapas div .mapa .img-mapa img {
  width: 100%;
}

@media screen and (max-width: 700px) {
  #seccion-modos-juego h2 {
    font-size: 36px;
  }

  .seccion-descripcion-modo {
    width: 90%;
  }

  .seccion-descripcion-modo h2 {
    font-family: "Teko", sans-serif;
    font-size: 36px;
  }
  .seccion-descripcion-modo .descripcion-modo,
.seccion-descripcion-modo .tutorial-modo {
    font-size: 12px;
  }
  .seccion-descripcion-modo .contenedor-nombre-modo .contenedor-icono-modo {
    width: 50px;
  }
  .seccion-descripcion-modo .contenedor-nombre-modo .nombre-modo {
    font-size: 24px;
  }

  .seccion-mapas h2 {
    font-size: 18px;
  }
  .seccion-mapas div .mapa p {
    font-size: 12px;
  }
}

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