@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Ysabeau+Infant:wght@300;400;500;600&display=swap');

:root {
  --dark: rgb(16, 16, 16);
  --light: rgb(248, 248, 248);
  --col: 600px;
}

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

body {
  background: var(--light);
  color: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.column {
  max-width: var(--col);
  width: 100%;
  text-align: center;
}

/* --- Typography --- */

h1 {
  font-family: 'Cormorant Infant', serif;
  font-weight: 700;
  font-size: 5rem;
  letter-spacing: 0;
  color: var(--dark);
  margin-bottom: 1.75rem;
  font-variant-ligatures: common-ligatures discretionary-ligatures;
  font-feature-settings: "liga" 1, "dlig" 1, "calt" 1;
}

.body-text {
  font-family: 'Cormorant Infant', serif;
  font-weight: 500;
  font-size: 1.65rem;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 1.6rem;
}

/* --- Buttons (nav links) --- */

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.btn {
  font-family: 'Ysabeau Infant', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
  width: 100%;
  background: var(--dark);
  color: var(--light);
  text-decoration: none;
  border-radius: 5px;
  padding: 0.85rem 1.5rem;
  text-align: center;
  transition: opacity 0.15s ease;
}

.btn:hover {
  opacity: 0.75;
}

.btn.dead {
  background: rgb(160, 160, 160);
  color: rgb(220, 220, 220);
  cursor: default;
  pointer-events: none;
}
