﻿.slides img {
    width: 100%;
    flex-shrink: 0;
    margin-bottom: 50px; /* Resimlerin alt kısmına 50px margin ekler */
}
.slider {
    position: relative;
    width: 100%;
    max-width: 600px; /* İstediğiniz genişliği ayarlayın */
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

    .slides img {
        width: 100%;
        flex-shrink: 0;
    }

.dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

    .dot.active {
        background-color: #717171;
    }
