.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 */
}

.logo img {
  position: absolute; 
  top: 70%;  
  width: 100%; 
  /*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));*/
}



/*.logo  {
  position: relative;
  /*margin: 300px auto 0;*/
  /*width: 500px;*/
  /*height: 250px;*/
  /*background: linear-gradient(0deg, #000, #272727);*/
/*}*/*/

.logo img:before, .logo img:after {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, 
    #0000ff, #00ff00,#ffff00, #ff0000);
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: steam 20s linear infinite;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.logo img:after {
  filter: blur(50px);
}





@keyframes slide {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  32%, 100% {
    opacity: 0;
  }
}
