* {
  margin: 0;
  padding: 0;
}

body {
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: Roboto;
  /* align-items: center; */
}

div.container {
  max-width: 500px;
  width: 100%;
}

div.fila {
  line-height: 0;
}

div.fila div{
  width: 20px;
  height: 20px;
  display: inline-block;
}

div.bloque {
  background-color: blue;
  display: inline-block;
}

div.pastilla {
  background: url('../img/pastilla-chica.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: inline-block;
}

div.cereza {
  background: url('../img/cereza.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: inline-block;
}

div.pacman {
  background: url('../img/pacman-01.gif');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 20px;
  height: 20px;
}

.pacman-left{
  transform: rotate(180deg);
}

.pacman-muerte {
  background: url('../img/pacman-gameover.gif');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 20px;
  height: 20px;
}

div.bluey {
  background: url('../img/Bluey.gif');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 20px;
  height: 20px;
}

div.pinky {
  background: url('../img/Pinky.gif');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 20px;
  height: 20px;
}

div.redy {
  background: url('../img/Redy.gif');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 20px;
  height: 20px;
}

div.greeny {
  background: url('../img/Greeny.gif');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 20px;
  height: 20px;
}

div.vacio {
  background-color: black;
}

div.info {
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: red;
  color: white;
}

.game-over{
  position: absolute;
  display: none;
  top: 70px;
  left: 90px;
  width: 300px;
  height: 150px;
  background-color: black;
  color: white;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  border: white solid 2px;
}

.reiniciar {
  background-color: gold;
  padding: 5px 10px;
  margin-top: 10px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: 300ms;
  box-sizing: border-box;
}

.reiniciar:hover {
  background-color: rgb(131, 111, 0);
  color: white;
}

.ocultar {
  display: none;
}

.mostrar {
  display: flex;
}

.desenfocar {
  filter: blur(5px);
}