body, html {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

.background {
  position: relative;
  height: 100vh;
  width: 100vw;
}

.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
  filter: brightness(1.05);
}

.top-left-logo {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 2;
}

.top-left-logo img {
  width: 100px;
  height: auto;
}

.content {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.cta {
  display: inline-block;
  padding: 0.9rem 2.7rem;
  background-color: #007aff;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.taglines h1 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.taglines p {
  font-size: 1rem;
  color: white;
}