:root {
  color-scheme: light dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: light-dark(#202321, #f0f2ee);
  background: light-dark(#f6f8f5, #161917);
}

* { box-sizing: border-box; }

body { margin: 0; }

main {
  min-height: 100svh;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.site-name {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0;
  color: light-dark(#59645e, #b1bdb5);
}

.entry {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 128px;
  min-height: 52px;
  max-width: 100%;
  padding: 12px 28px;
  border-radius: 6px;
  color: #fff;
  background: #23634a;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.entry:hover { background: #184b37; }
.entry:focus-visible { outline: 3px solid #bd8841; outline-offset: 5px; }

h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
