.banner {
  width: 300px;
  height: 450px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  animation: slide 12s infinite; 
  opacity: 0;
}

.slide:nth-child(1) {
  animation-delay: 0s;
}

.slide:nth-child(2) {
  animation-delay: 3s;
}

.slide:nth-child(3) {
  animation-delay: 6s;
}

.slide:nth-child(4) {
  animation-delay: 9s;
}

.overlay-container {
    position: absolute;
    top: 40%; /* Adjust to vertically center the SVG */
    left: 5%; /* Adjust to horizontally center the SVG */
    width: 90%;
    height: 90%;
}

/* Styles for the SVG overlay */
.overlay-svg {
    width: 100%;
    height: 100%;
}


.overlay-container-star {
    position: absolute;
    top: 5%; /* Adjust to vertically center the SVG */
    left: 75%; /* Adjust to horizontally center the SVG */
    width: 20%;
    height: 20%;
}

.logo img {
  position: absolute; 
  top: 70%; 
  left: 5%; 
  width: 270px; 
  height: 50px;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5)) drop-shadow(-1px -1px 1px rgba(0, 0, 0, 0.5)) drop-shadow(1px -1px 1px rgba(0, 0, 0, 0.5)) drop-shadow(-1px 1px 1px rgba(0, 0, 0, 0.5));
}

.btn {
    position: absolute;
    top: 83%;
    left: 5%;
    /*width: 240px;
    height: 55px;*/
    background: #20d9748f;
    border-radius: 50px;
    display: flex;
    justify-content: center;
}

.btn :hover {
    background: #20d974;
    box-shadow: 0 0 25px #01ff74;
}

.btn span {
    font-family: "Verdana", ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: white;
    padding: 13px 10px;
    border-radius: 30px;
    text-transform: uppercase;
    width: 250px;
    text-align: center;
}


@keyframes slide {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  32%, 100% {
    opacity: 0;
  }
}
