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

html, body {
  height: 100%;
}

body {
  background: #edeef1;
  color: #16161a;
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  text-align: center;
}

.bird-logo {
  width: clamp(80px, 12vw, 140px);
  height: auto;
}

.band-name {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.status {
  font-size: 0.85rem;
  color: #8a94a6;
  letter-spacing: 0.04em;
  min-height: 1.2em;
}


