.slideshow-container {
    position: relative;
}

.slides {
    display: none;
}

.slideshow-container button {
    color: #4D8FDB;
    aspect-ratio: 1;
    cursor: pointer;
    background: none;
    display: inline-block;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    display: grid;
    place-items: center;
}

.slideshow-container img {
    object-fit: cover;
}

.slideshow-container button:hover {
    color: #000000;
    background-color: #1F7C4A;
}

.previous, .next {
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    transition: 0.6s ease;
    user-select: none;
}

.previous {
    left: 0;
}

.next {
    right: 0;
}

.number-text {
    font-size: 16px;
    top: 8px;
    text-align: center;
    padding: 8px 12px;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}