@media screen and (max-width: 600px) {
  .title {
    font-size: 1.6rem !important;
  }
  #icon-box svg {
    font-size: 1.6rem !important;
  }
}
body {
  position: relative;
  margin: 0 auto;
  padding: 0;
  box-sizing: content-box;
  color: white;
  font-size: 16px;
}
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
#background {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(45deg, var(--defColor0), var(--defColor1));
  overflow: hidden;
  z-index: -1;
}
#background img {
  position: relative;
  max-height: 100vh;
  min-height: 100vh;
  filter: blur(20px);
}
#navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
#navigation .title {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 1.8px;
  margin: 1rem 1rem 3rem;
  text-align: center;
}
#navigation #friends {
  width: 90%;
  min-width: 300px;
  max-width: 640px;
  margin: 2rem 0 1rem;
}
#navigation #friends .friends-title {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: bold;
  box-shadow: inset 0 -14px 0 0 #ff8da1;
  margin-bottom: 0.5rem;
}
#navigation #friends .friends-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#navigation #friends .friends-list a {
  flex-shrink: 0;
  margin-bottom: 5px;
  color: white;
  text-decoration: none;
  transition: 0.3s ease-in-out all;
}
#navigation #friends .friends-list a:not(:last-child) {
  margin-right: 1rem;
}
#navigation #friends .friends-list a:hover {
  text-decoration: underline dotted pink;
}
#navigation #icon-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: column dense;
  grid-row-gap: 1rem;
  grid-column-gap: 1rem;
  width: 90%;
  min-width: 300px;
  max-width: 640px;
}
#navigation #icon-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  height: calc(var(--height) * (3 / 4));
  text-decoration: none;
  transition: 0.3s ease-in-out all;
}
#navigation #icon-box a svg {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
#navigation #icon-box a span {
  font-size: 0.9rem;
}
#navigation #icon-box a.current {
  grid-row: 1 / span 2;
  height: unset;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.35);
}
#navigation #footer {
  font-size: 0.9rem;
}
#navigation #footer a {
  color: white;
  text-decoration: underline dotted pink;
}
#navigation #footer a:hover {
  color: pink;
}