#not-found-page {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--board-background);
  width: 100vw;
  height: 100vh;

  #splittable-title {
    position: absolute;
    left: 80px;
    top: 80px;
    color: var(--bg-dark);
    -webkit-text-stroke: 1px var(--bg-active);
    font-size: xxx-large;
    text-shadow: 2px 2px #333;
    animation-name: disappearleft;
    animation-duration: 3s;
    animation-iteration-count: infinite;
  }

  #info-container {
    display: flex;
    flex-direction: column;
    gap: 2em;
    background-color: var(--bg);
    padding: 2em;
    border-radius: 0.5em;
    border: 1px solid black;
    box-shadow: 2px 2px 4px black;

    svg {
      display: block;
      width: 4em;
      height: 4em;
    }

    a {
      text-decoration: underline;
      font-weight: bold;
    }
  }
}

@keyframes disappearleft {
  70% {
    transform: skew(20deg) translateY(-20%);
    text-shadow: 0px 0px 50px;
    opacity: 1;
  }
  80% {
    transform: skew(20deg) translateY(-20%);
    text-shadow: 0px 0px 50px;
    opacity: 0;
  }
}
