@import url('https://fonts.googleapis.com/css2?family=Honk&display=swap');

body {
  margin: 0;
  padding: 0;
  overflow: auto;
  width: 100vw;
  height: 100vh;
  background: black url(../images/main.png);
  background-size: cover;
  background-position: center center;
  font-family: "Helvetica Neue", sans-serif;
  transform: rotate(0.5deg);
}

.honk-headline {
  font-family: "Honk", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
     "MORF" 14,
     "SHLN" 38;
}

h1.honk-headline {
  color: #000000;
  font-size: 4.5rem;
  transform: rotate(-3deg);
  margin: 2rem;
}

h1, h2, h3 {
  min-font-size: calc(1vw + 1vh);
  color: #FFFFFF;
  text-shadow: 2px 2px #000000;
}

#content {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-template-areas:
        "header"
        "content"
        "footer";

  box-sizing: border-box;
  padding: 24px;
  position: absolute;

  width: 100vw;
  min-height: 100vh;
  background-color: rgba(222, 173, 255, 0.3);
  backdrop-filter: blur(35px);
}

.header {
  grid-area: header;
  text-align: center;
  margin-bottom: 1.5em;
}

.header h3 {
  color: #ffffff;
}

.header p {
  color: #DEADAF;
}

.lists {
  grid-area: content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0.5em;
}

.list {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  font-size: 1.3rem;
}

.list h2 {
  color: #5bff1b
}

.list:first-child h2 {
  transform: rotate(2deg);
}

.list:nth-child(2) h2 {
  transform: rotate(-2deg);
}

.list:last-child h2 {
  transform: rotate(-1deg);
}

.list a:link, a:active {
  color: #FFFFFF;
}

.list a:visited {
  color: #FAFAFA;
}

.list a:nth-child(even) {
  transform: rotate(-1deg);
}

.list a:nth-child(even) {
  transform: rotate(-1deg);
}

.list a:nth-child(odd) {
  transform: rotate(1deg);
}

.list a:nth-child(3n) {
  transform: unset;
}

.list img {
  width: 75%;
}

@media (width <= 680px) {
  .lists {
    grid-area: content;
    display: flex;
    flex-direction: column;
  }

  .list {
    margin-bottom: 1.5em;
  }
}
