body {
  margin: 0;
  font-family: Arial;
}

.split-container {
  display: flex;
  height: 100vh;
}

.split {
  width: 50%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  filter: brightness(0.9) contrast(1.2) saturate(1.2);
}
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;
  z-index: 2;
}

.overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
  z-index: 2;
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  letter-spacing: 8px;
  font-family: 'Playfair Display', serif;
  color: white;
  z-index: 5;
  pointer-events: none;
}
.split::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  
  transform: translate(-50%, -50%);
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 300px;

  text-align: center;
  color: white;
  z-index: 2;
}
.content h2 {
  margin: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {

  .split-container {
    flex-direction: column;
  }

  .split {
    width: 100%;
    height: 50vh;
  }

  .center-logo {
    font-size: 40px;
    letter-spacing: 5px;
  }

  .content h2 {
    font-size: 22px;
  }

  button {
    padding: 8px 18px;
    font-size: 14px;
  }

  .logo {
    width: 70px;
  }
}
.content h2 {
  margin: 0;
  letter-spacing: 4px;
}