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

html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  color: white;
}

/* Background */
body {
  background: url('crescendo background.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Overlay */
.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

/* Text Content */
.content {
  max-width: 600px;
}

.content h1 {
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.content p {
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.logo {
  width: 300px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.contact {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .content h1 {
    font-size: 1.6rem;
  }
  .content p, .contact p {
    font-size: 0.95rem;
  }
}
