#carousel {
    margin-top: 2rem;
}

.slideshow-container { 
    position: relative;
    margin: auto;
}

.slides {
    display: none;
}

.prev,
.next {
    display: grid;
    align-content: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    width: auto;
    height: 100%;
    padding: 0 20px 0 20px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;    
    user-select: none;
    background: rgb(211, 211, 211, 0.35);
}

.next {
    right: 0;    
}

    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.slides.active {
    display: block;
}

    .dot.active,
    .dot:hover {
        background-color: #717171;
    }

.slide-fade {
    animation-name: fade;
    animation-duration: 1s;
}

@media only screen and (max-width: 768px) {
    .details {
        margin: 1rem;
    }
    .prev, .next {
        display: none;
    }
}
