body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: sans-serif;
  background: #000;
  color: #fff;
}

.slide {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.cover {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: brightness(0.6);
}





.overlay, .text, .cta {
  z-index: 10;
}

.title {
  font-size: 2em;
}

.category {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1em;
}

.btn {
  padding: 10px 20px;
  background: white;
  color: black;
  border-radius: 8px;
  text-decoration: none;
}

.progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.2);
}

.bar {
  height: 100%;
  background: white;
  transition: width 0.3s ease;
}

@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.2) translate(-2%, -2%);
  }
}
.kenburns {
  animation: kenburns 20s ease-out forwards;
}
