.prevent-select{
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container#SlideShow{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.dots{
    background-color: transparent;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.dot{
    height: 35px;
    width: 35px;
    margin: 0 2px;
    background-color: var(--yellow);
    border-radius: 50%;
    transition: 0.3s ease;
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.btnactive{
    background-color: var(--gray);
    filter: none !important;
    box-shadow: 0 0 10px rgba(0,0,0,0.5) !important;
} 
.dot:hover{
    filter: brightness(0.6);
    box-shadow: 0 0 10px #000000;
}
.imgSlide{
    width: 50vw;
    height: 70vh;
    padding: 20px;
    border-radius: 30px;
    object-fit: contain;
    display: none;
    background-color: rgba(0,0,0,0.5);
}
.imgactive{
    display: block;
}