body {
  background-color: var(--accent-bg);
  color: var(--text);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

#title {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media (min-width: 600px) {
  #title-start {
    display: inline-block;
    transform: translateX(-64px);
    margin-right: auto;
    animation: slide-in-left 1.5s ease-out;
  }
  
  #title-end {
    display: inline-block;
    transform: translateX(64px);
    margin-left: auto;
    animation: slide-in-right 1.5s ease-out;
  }
}

@keyframes slide-in-left {
  from {
    transform: translateX(-50vw);
  }
  to {
    transform: translateX(-64px);
  }
}

@keyframes slide-in-right {
  from {
    transform: translateX(50vw);
  }
  to {
    transform: translateX(64px);
  }
}

#intro {
  margin-top: auto;
  text-align: center;
  max-width: 800px;
  @media (min-width: 600px) {
    margin-bottom: 64px;
  }
}

#enter::after {
  content: ' ->';
  letter-spacing: 0;
}

#enter {
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--text);
  padding: 4px 12px;
  display: inline-block;
  margin-top: 24px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 16px;
  margin-bottom: -64px;
}

.header a , .footer a {
  color: var(--text);
}

.header span {
  @media (min-width: 600px) {
    visibility: hidden;
  }
}

.header a:hover, .footer a:hover {
  text-decoration: none;
}

.footer {
  bottom: 0;
  background: none;
  display: none;
  @media (min-width: 600px) {
    display: flex;
  }
}

.header a[aria-current="page"], .footer a[aria-current="page"] {
  color: var(--text);
  text-decoration: none;
}
