html, body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: url('/images/EAE_Under_Construction.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  height: 100%;
  margin: 0;
  padding: 0;
}

.overlay {
  min-height: 50vh;
  margin-left: 3rem;
  margin-top: 4rem;
  box-sizing: border-box;
} 

.container {
  max-width: 960px;
  width: 90%;
  padding: 1rem;
  text-align: left;
}

header {
  margin-left: 4rem;
  margin-top: 4rem;
}

.logo {
  width: 289px;
  height: 69px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content h1 {
  font-size: 3.3rem;
  font-weight: 600;
  width: 100%;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.8rem;
  font-weight: 100;
  line-height: 1.28;
  margin-bottom: 2rem;
  color: #d7fdfe;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 1.5rem;
  width: 285px;
  height: 38px;
  color: white;
  border: 1px solid #b6f8fa;
  text-decoration: none;
  font-weight: 100;
  font-size: 1.8rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  header {
    margin-left: 2rem;
    margin-top: 2rem;
  }

  .overlay {
    margin-left: 1rem;
    margin-top: 2rem;
  }
  .content h1 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 1rem;
  }

  .logo {
    height: 40px;
    width: 167px;
  }

  .btn {
    width: 155px;
    height: 25px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  main {
    gap: 1rem;
  }
}