:root {
  color-scheme: dark;
  font-family: -apple-system, "SF Pro Text", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

html,
body {
  width: 100%;
  margin: 0;
}

body {
  min-height: 100%;
  padding: 56px 24px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: #f4f4f5;
  background:
    radial-gradient(1100px 600px at 18% -10%, rgba(64, 32, 24, 0.55), transparent 60%),
    radial-gradient(900px 600px at 90% 110%, rgba(22, 46, 30, 0.5), transparent 60%),
    #0c0d0e;
  background-attachment: fixed;
}

.menu {
  width: min(1040px, 100%);
  display: grid;
  justify-items: center;
  gap: 34px;
}

.menu-head {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.menu-head h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.menu-head p {
  margin: 0;
  color: #9b9ea3;
  font-size: 14px;
}

.tiles {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, 230px);
  justify-content: center;
  gap: 22px;
}

.tile {
  display: grid;
  grid-template-rows: 1fr auto;
  width: 230px;
  height: 230px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.tile-art {
  display: grid;
  place-items: center;
}

.tile-art svg {
  width: 128px;
  height: auto;
}

.tile-label {
  display: grid;
  gap: 3px;
  text-align: center;
}

.tile-label strong {
  font-size: 14px;
}

.tile-label span {
  color: #9b9ea3;
  font-size: 12px;
}
