body {

  background: #000;

  display: flex;

  height: 100vh;

  align-items: center;

  justify-content: center;

  font-family: sans-serif;

}

.ascii {

  width: 60%;

  aspect-ratio: 16/12;

  flex-shrink: 0;

  flex-grow: 0;

  border: 0px solid #fff;

  overflow: hidden;

  background-image: url(https://kess.wtf/mv404.png);

  background-size: cover;

  background-position: center;

  background-clip: text;

  -webkit-background-clip: text;

  color: transparent;

  font-size: 0.7vw;

}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .ascii {
    width: 100%;
    height: 100vh;
    aspect-ratio: unset;
    font-size: 2.5vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 480px) {
  .ascii {
    width: 100%;
    height: 100vh;
    aspect-ratio: unset;
    font-size: 3vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 320px) {
  .ascii {
    width: 100%;
    height: 100vh;
    aspect-ratio: unset;
    font-size: 3.5vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
