@font-face {
  font-family: 'Space Grotesk';
  src: url('./space-grotesk.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  min-height: 100svh;
  background: #000;
  color: #e8eef6;
  font-family: 'Space Grotesk', sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 32px 20px;
}

.logo {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.sites {
  display: flex;
  flex-direction: column;
  width: min(100%, 320px);
  gap: 10px;
}

.sites a {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ffffff2e;
  border-radius: 6px;
  background: #ffffff12;
  color: #e8eef6;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.sites a:hover {
  background: #ffffff22;
  border-color: #ffffff55;
  color: #fff;
}
