body {
  margin: 0;
  padding: 0;
  font-family: Josefin Sans, sans-serif;
  height: 100vh;
  background: url('background-image.jpg') no-repeat center center fixed; /* Background image */
  background-size: cover;
}

.overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 140px;
}

.container {
  text-align: center;
  padding: 10px;
}

.logo {
  width: 500px;
  margin-bottom: 10px; 
  position: relative;
  top: -40px;
}

.headline {
  font-size: 8.2rem;
  color: #f5ece1; /* Text color */
  margin: 0 auto;
  max-width: 900px; 
}

.body-text {
  font-size: 3rem;
  color: #f5ece1; /* Text color */
  margin: 30px auto;
  max-width: 900px;
  line-height: 1.5;
}

.new-mobile-logo {
  display: none;
  height: 525px;
  margin: 0 auto 50px;
}

/* Mobile size */
@media (max-width: 768px) {
  .headline {
    font-size: 4rem;
    line-height: .8;
    position: relative;
    top: -30px;
  }
  
  .logo {
    display: none;
}
  .new-mobile-logo {
    display: block;
    position: relative;
    top: -60px;
    left: 15px;
  }

  .body-text {
    font-size: 1.9rem;
    line-height: 1.2;
    position: relative;
    top: -30px;
}
