

.maincontainerdiv{
display: flex;
align-items: center;
justify-content: space-around;
flex-direction: column;
}



.flashdiv{
    background-color: yellow;
    width:350px;
    height: 500px;
    overflow: hidden;
}

.imagediv{
display: block;
transition: display 2s linear;

/* animation: flip 2s infinite linear; */
}
/* @keyframes flip{
    0%{
       transform: rotate(180deg);
    }
    100%{
        transform: rotate(0deg);
    }
} */
.buttondiv{
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: 'Shantell Sans', cursive;
    color: #fff;
    margin-top:10px;
}
.buttondiv button{
    cursor: pointer;
    background-color: transparent;
    color:#fff;
    font-family: 'Shantell Sans', cursive;
}
.buttondiv button:hover{
color: #ff383b;
}




.maincontainerdiv{
display: flex;
align-items: center;
justify-content: space-around;
flex-direction: column;
}



.flashdiv{
    background-color: yellow;
    width:350px;
    height: 500px;
    overflow: hidden;
}

.imagediv{
display: block;
transition: display 2s linear;

/* animation: flip 2s infinite linear; */
}
/* @keyframes flip{
    0%{
       transform: rotate(180deg);
    }
    100%{
        transform: rotate(0deg);
    }
} */
.buttondiv{
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: 'Shantell Sans', cursive;
    color: #fff;
    margin-top:10px;
}
.buttondiv button{
    cursor: pointer;
    background-color: transparent;
    color:#fff;
    font-family: 'Shantell Sans', cursive;
}
.buttondiv button:hover{
color: #ff383b;
}


.swiper {
    width:350px;
height: 500px;
margin:10px;
 border-radius:20px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index:10;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-button-next{
    z-index:10001;
}