/* //////////////////// Grid //////////////////// */

#state1 .c1 {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 10px solid white;
  background-color: red;
  opacity: 100%;
  transition: top 1s ease;
}

.c1 {
  position: absolute;
  top: calc(-100vh - 20px);
  left: 0;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  opacity: 100%;
  transition: top 1s ease;
}

/* //////////////////// Style //////////////////// */

@keyframes tacosAnim {
  0% {
    filter: blur(0px);
  }

  50% {
    filter: blur(152px);
  }

  100% {
    filter: blur(0px);
  }
}

@keyframes txtAnim {
  0% {
    z-index: 1;
    opacity: 0%;
  }

  100% {
    z-index: 100;
    opacity: 100%;
  }
}

.tacos {
  z-index: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: scale(1, 1.1) translateY(-43.5%);
}

.tacosTitle {
  z-index: 55;
  font-family: circular;
  font-size: 67vw;
  text-align: center;
  font-variation-settings: "wght" 400, "wdth" 10;
  animation-name: tacosAnim;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.tacosText {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 99999999;
  border: 10px solid white;
  padding: 20px;
  width: auto;
  font-family: circular;
  font-size: 1.2vw;
  text-align: justify;
  background-color: red;
  animation-name: txtAnim;
  animation-duration: 10s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}
