html,
body {
  font-family: "IBM Plex Sans", sans-serif;
  color: white;
}

html,
body,
main {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  background: #5e143c url("/assets/background.png") center center no-repeat;
  background-size: cover;
}

h1 {
  text-decoration: underline;
}

p {
  margin: 0;
  padding: 0;
}

main {
  padding: 0 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translateY(-3%);
  display: flex;
}

a,
a:link,
a:visited,
a:hover {
  color: white;
}

.title {
  font-size: 32px;
  font-weight: 600;
}

.zune {
  background-image: linear-gradient(0.25turn, #e65588, #ee9035);
  color: transparent;
  background-clip: text;
}

.logo {
  width: 200px;
  height: 200px;
  background: url("/assets/logo.png") center center no-repeat;
  background-size: contain;
  transform: translateY(10%);
}

.github-link {
  margin-top: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 -4px 0 inset rgba(250, 186, 26, 0.712);
  transition: box-shadow ease-in-out 300ms;
  display: block;
}

.github-link:hover {
  box-shadow: 0 -10px 0 inset #eeb72bd8;
}

.logo-link {
  text-decoration: none;
}

.letter-page main {
  padding-top: 24px;
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
  transform: none;
}

.rune-title {
  font-size: 40px;
  font-style: italic;
  transform: translateY(-24%);
}

#rune-letter {
  padding-left: 12px;
  padding-top: 36px;
  max-width: 640px;
  text-align: start;
  font-size: 18px;
  line-height: 1.4em;
}

#rune-letter p {
  margin-bottom: 0.95em;
}

.sign-p {
  margin-top: 20px;
  text-align: right;
}

.sign {
  height: 84px;
}

.link-list {
  text-align: start;
  list-style: none;
}

.link-list li {
  margin-bottom: 0.5em;
}

.link-list a {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color ease-in-out 300ms;
}

.link-list a::link,
.link-list a::visited {
  text-decoration: none;
  color: white;
}

.link-list a:hover {
  color: #eeb72b;
}

.link-list a i {
  font-size: 1.3em;
  margin-right: 0.25em;
}

@media screen and (max-width: 600px) {
  body {
    height: initial;
  }

  .letter-page main {
    flex-direction: column;
  }

  #rune-letter {
    padding: 12px;
  }

  .logo {
    margin: 0 auto;
  }

  .logo-section {
    width: 100%;
  }

  .link-list {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .link-list li {
    margin: 8px 12px;
  }

  .link-list li {
    font-size: 20px;
  }

  .link-list li span {
    display: none;
  }
}