@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap");
body {
  margin: 0;
  text-align: center;
  font-family: "Roboto";
  background-color: #ABBC85;
}

h1 {
  margin: 0;
  font-size: 50px;
  color: #536256;
}

header {
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 10px;
  grid-template-columns: 1fr 2fr 1fr;
}

.tabla-informacion {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 1em 8em;
  width: 100%;
}

.tabla-informacion__caja {
  display: flex;
}

.juego {
  display: grid;
  grid-template-columns: 80% 20%;
}

#descripcion {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f3d1d;
  margin-right: 40px;
  color: #ABBC85;
  font-size: 20px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 0px 1px;
  border-radius: 5px;
  overflow: scroll;
}

#container {
  width: 97%;
  margin-left: 40px;
  background-color: #55703f;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 0px 1px;
  border-radius: 5px;
}

#puntuacion {
  margin-bottom: 1em;
  font-size: 2em;
}

.celda {
  display: grid;
  align-content: center;
  height: 200px;
  font-size: 3em;
  background-image: url("../images/celda.jpg");
  background-size: 100% 100%;
  border-radius: 10px;
  padding: 0px;
}

.imagen {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

.sombra {
  box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, inset 6px 6px 28px -2px rgba(0, 0, 0, 0);
}

#ranking {
  font-size: 2em;
}

#logo {
  border-radius: 50px;
}

#nick {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  border: solid 1px black;
  background-color: white;
}

.caja {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 100px;
  border: solid 1px black;
  background-color: white;
}

.cajaIdioma {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 162px;
  background-color: white;
  border: solid 1px black;
}

.contador {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 53px;
  width: 100px;
  border: solid 1px black;
  background-color: white;
}

.botonIdioma {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  width: 80px;
  border: solid 1px black;
  background-color: white;
}

footer {
  margin-top: 30px;
  padding-bottom: 20px;
  color: white;
  border-top: solid 2px #536256;
  background: #050126;
  background: linear-gradient(90deg, #050126 16%, #095579 65%, #1f3d1d 100%);
}

#barra-informativa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92%;
  height: 3em;
  border: solid 2px black;
  margin: 2em;
  border-radius: 15px;
  background-color: #1f3d1d;
  color: #ABBC85;
  font-size: 20px;
}

#tituloMovil {
  display: none;
}

#invisible {
  display: none;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  z-index: 1;
  width: 80%;
  height: 70%;
}

@media only screen and (max-width: 500px) {
  #descripcion {
    display: none;
  }

  #tituloMovil {
    display: block;
  }

  #tituloPc {
    display: none;
  }

  #punt {
    grid-area: punt;
  }

  #top {
    grid-area: topP;
    margin: auto;
  }

  #idioma {
    grid-area: idioma;
  }

  .tabla-informacion {
    margin-left: 5px;
    grid-template-areas: "punt idioma" "topP idioma";
    grid-gap: 10px;
  }
}/*# sourceMappingURL=style.css.map */