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

/* Background Image */
body {
  height: 100vh;
  background: url("images/earring1.jpg") no-repeat center center/cover;
  font-family: 'Georgia', serif;
  color: white;
  text-align: center;
  position: relative;
}

/* Dark overlay for readability */
.overlay {
  background: rgba(0, 0, 0, 0.55);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Content */
.content {
  max-width: 85%;
}

.brand {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.coming-soon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  margin-top: 10px;
}