#background {
  background-image: url(/assets/img/tile.png);
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-position: 50%;
}
aside {
  position: fixed;
  top: 0;
  font-family: Delusion;
  font-size: 10rem;
  color: red;
  pointer-events: none;
}
aside.left {
  left: 0;
  transform: translate(-50%, 0);
}
aside.right {
  right: 0;
  transform: translate(50%, 0);
}
aside div {
  margin: 1em 0;
}
.main {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content {
  background-color: rgba(255, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  margin: 1em;
  text-align: center;
  border-radius: 1rem;
  padding: 3rem;
  max-width: 30ch;
}
.content__image {
  border-radius: 50%;
  width: 100%;
}
.content__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.content__link {
  color: #fff;
  display: block;
  width: 0;
}
.content__link:hover,
.content__link:focus,
.content__link:active {
  color: red;
}
@media only screen and (max-width: 900px) {
  aside {
    font-size: 3rem;
    display: flex;
    gap: 0;
  }
  aside.left {
    top: 0;
    transform: translate(0, -43%);
  }
  aside.right {
    top: unset;
    bottom: 0;
    transform: translate(0, 57%);
  }
  aside div {
    writing-mode: vertical-rl;
    margin: 0 1em;
  }
}
