* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f9fafb;
}

/* Full-screen background image */
body {
  background: #000 url("Double_herm_Chiaramonti_9.jpg") center center no-repeat fixed;
  background-size: cover;
}

/* Dark translucent overlay to keep text readable */
.overlay {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(0,0,0,0.1), rgba(0,0,0,0.85));
  padding: 2rem;
}

.panel {
  text-align: center;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(249, 250, 251, 0.2);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.panel h1 {
  font-family: "Times New Roman", "Times", serif;
  letter-spacing: 0.28em;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.email a {
  color: #f9fafb;
  text-decoration: none;
  font-size: 0.95rem;
}

.email a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .panel {
    width: 100%;
    max-width: 320px;
    padding: 1.25rem 1.5rem;
  }

  .panel h1 {
    letter-spacing: 0.18em;
    font-size: 1rem;
  }
}