*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #d6eaf8;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.5rem;
}

p {
  font-size: .8rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 1rem;
}


.sites {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.site-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #333;
  padding: 5px;
}

.site-link img {
  width: 180px;
  max-width: 100%;
  height: auto;
  transition: opacity 0.2s;
}

.site-link .affected-wordmark {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  font-style: normal;
  text-decoration: none;
  color: #01066b;
  line-height: 1;
}

.site-link span {
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
}

.divider {
  color: #7aa8c0;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
}

.site-link:hover img { opacity: 0.7; }
.site-link:hover span:not(.affected-wordmark) { color: #222; text-decoration: underline; }


.site-footer {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.5rem;
}

.site-footer a {
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
}

.site-footer a:hover { color: #888; }


@media (max-width: 480px) {
  main { padding: 1.5rem 1rem; }
  h1 { margin-bottom: 2rem; }
  .sites { gap: 2rem; }
  .site-link .affected-wordmark { font-size: 2rem; }
}
