body {
  background-color: var(--black);
  overflow: hidden;
}

.wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  width: 100vw;
  height: 100vh;
}
.logo {
  color: var(--red);
  font-size: 150rem;
  line-height: 1rem;
  font-family: handjet;
  font-variation-settings: "wght" 500, "ELGR" 1, "ELSH" 1;
  animation: animation-1 3s alternate infinite ease-in-out;
  filter: blur(1px);
  height: auto;
  width: auto;
  background-color: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.frame {
  transform: rotate(45deg) translate(0px, -150px);
  transform-origin: center;
  position: absolute;
}

@keyframes animation-1 {
  from {
  }
  to {
    font-variation-settings: "wght" 500, "ELGR" 1, "ELSH" 2;
    transform: perspective;
  }
}

.digital-background {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  mix-blend-mode: multiply;
  opacity: 0.2;
  background-image: url("./martin-good-42/img/digital_bg.jpg");
  background-size: cover;
  background-color: aqua;
  filter: blur(1px);
}
