.banner {
  width: 300px;
  height: 250px;
  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%;
}

/* Styles for the SVG overlay */
.overlay-svg-star {
    width: 100%;
    height: 100%;
}

/* Styles for the star position */
.overlay-svg-star svg {
    position: absolute;
    top: 10px; /* Adjust to position vertically */
    right: 10px; /* Adjust to position horizontally */
}

@keyframes slide {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  32%, 100% {
    opacity: 0;
  }
}
