
.slider-container {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 200%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide video,
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
}

.overlay h1 {
  font-size: 3em;
  line-height: 1;
  color: white;
}

.bold {
  font-weight: 900;
}

.thin {
  font-style: italic;
  font-weight: 300;
}

.overlay button {
  margin-top: 1em;
  background-color: #0077b6;
  color: white;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: white;
  font-size: 2rem;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 3;
}

.prev:hover,
.next:hover {
  color: #e50914;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
