* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  height: 100vh;
  color: #fff;
}

.overlay {
  background-color: rgba(15, 15, 15, 0.7);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.content {
  max-width: 600px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #ccc;
}
