html, body {
  margin: 0;
  padding: 0;
  background-color: #efece4;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: #2a2a2a;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.5rem 0.5rem;
}

header img {
  width: 88px;
  height: 88px;
  display: block;
  margin-bottom: 0.75rem;
}

header h1 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: lowercase;
}

.sub-header {
  margin: 0.1rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: #8a8378;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 4rem;
}

.picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 620px;
}

.picker a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  width: 220px;
  padding: 2rem 1.5rem;
  background: #f8f2e6;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  box-shadow:
    6px 7px 0 rgba(90, 70, 40, 0.08),
    0 1px 2px rgba(90, 70, 40, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.picker a:hover {
  transform: translateY(-3px);
  box-shadow:
    8px 10px 0 rgba(90, 70, 40, 0.1),
    0 1px 2px rgba(90, 70, 40, 0.06);
}

.picker .glyph {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.picker h2 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: #2a2a2a;
}

.picker p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
  color: #6b6862;
}

footer {
  text-align: center;
  padding: 0.5rem 1rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #6b6862;
}
