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

article.page {
  margin-bottom: -1.2em;
  padding: 18vh 12vw 12vh;
}

div.about {
  margin-right: 6vw;
  color: var(--white);
  flex-grow: 3;
}

div.about h1 {
  display: flex;
  font-size: 40px;
  font-weight: 700;
  white-space: nowrap;
}

div.about h1 > svg {
  color: var(--pink);
  align-self: center;
}

div.about h1 small {
  display: inline-block;
  position: relative;
  top: -6px;
  margin-left: 0.4em;
  padding: 0.14em 0.25em 0.14em 0.24em;
  font-size: 0.56em;
  line-height: 1em;
  color: var(--grey-darkest);
  background-color: var(--white);
  border-radius: 2px;
}

div.about h1 + h4 {
  margin-top: 0px;
  color: var(--grey-medium);
}

div.about ul {
  margin-top: 1.8em;
  padding-left: 0px;
  font-size: 22px;
  list-style: none;
}

div.about ul > li {
  margin-top: 0.6em;
}

div.about ul > li:last-child {
  margin-top: 1.2em;
}

div.about ul > li svg {
  margin-right: 0.8em;
  color: var(--grey-dark);
}

div.about hr {
  width: 20%;
  background-color: var(--pink);
}

div.about p {
  margin-top: 2em;
  color: var(--grey-dark);
}

div.account {
  width: 300px;
  min-width: 250px;
  flex-grow: 1;
}

div.account > form {
  border-radius: 6px;
  overflow: hidden;
}

div.account > form fieldset {
  padding: 1.4em 1.6em;
  background-color: var(--white);
}

div.account > form fieldset.footer {
  color: var(--grey-dark);
  background-color: var(--grey-lightest);
}

div.posters {
  display: block;
  display: flex;
  position: fixed;
  top: 50%;
  left: -30px;
  width: calc(100vw + 60px);
  flex-flow: row wrap;
  transform: translateY(-50%);
  user-select: none;
  overflow: hidden;
  z-index: -1;
}

div.posters > figure {
  width: calc(100% / 6 - 10px);
  margin: 5px !important;
  padding: 2px;
  border: 2px solid var(--grey-darkest);
  border-radius: 10px;
  box-sizing: border-box;
  filter: opacity(10%);
}

div.posters > figure > img {
  width: 100%;
  border-radius: 6px;
}

footer.legal {
  color: var(--grey-dark);
}

footer.legal a {
  color: var(--grey-medium);
}

footer.legal select {
  padding: 0px 1em 0px 0px;
  line-height: 1.4em;
  color: var(--grey-medium);
  background: transparent no-repeat calc(100% - 1px) calc(50% - 1px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%236B6B6B' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E");
  background-size: 0.6em;
  border: 0px;
}

@media screen and (max-width: 800px) {
  article.page {
    padding: 8vw;
  }

  div.posters > figure {
    width: calc(100% / 4 - 10px);
  }
}

@media screen and (max-width: 700px) {
  div.welcome.split {
    display: block;
  }

  div.about {
    margin-right: 0px;
  }

  div.account {
    width: 100%;
    margin-top: calc(2em);
  }
}

@media screen and (max-width: 600px) {
  article.page {
    padding: 40px;
  }

  div.about ul {
    font-size: 20px;
  }

  div.posters > figure {
    width: calc(100% / 3 - 10px);
  }
}