html {
  background-color: #000;
}

body {
  font-family: Cochin, Georgia, Times, 'Times New Roman', serif;
  color: #fff;
}

a:link {
  color: #8bc5ff;
}

a:visited {
  color: #bfa7ff;
}

a:hover {
  color: #d6e8ff;
}

a:active {
  color: orange;
}

main {
  background-color: #111;
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.page-shell {
  background-color: #1a1a1a;
  border: 1px solid #444444;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tile-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 18px;
  border: 1px solid #e5e5e5;
  background-color: #24292f;
  color: #f5f5f5;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 5px 5px rgb(82 82 82);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  padding: 0.75rem 1.5rem;
  box-sizing: border-box;
  overflow: hidden;
}

.tile-button:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 rgb(82 82 82);
}

.tile-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

@media (max-width: 56rem) {
  .page-shell {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
}

@media (max-width: 799px) {
  .page-shell {
    padding: 1.5rem;
  }
}
