/* Reset-ish */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Background */
body {
  display: flex;
  align-items: center;
  justify-content: center;

  /* OPTION A: solid background */
  background: #0f0f0f;

  /* OPTION B: background image (comment out A) */
  /*
  background: url("bg.jpg") center / cover no-repeat fixed;
  */
}

/* Main layout */
.container {
  text-align: center;
  padding: 2rem;
}

/* Flyer */
.flyer {
  max-width: min(90vw, 800px);
  max-height: 85vh;
  height: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* Names */
.names {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.names a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.names a:hover {
  color: #ffffff;
}

.names span {
  margin: 0 0.5rem;
  color: rgba(255,255,255,0.4);
}
