@charset "utf-8";

/*body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px;
}*/´.carousel {
    position: relative;
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

    .Mibtn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        border: none;
        color: white;
        font-size: 2rem;
        padding: 10px;
        cursor: pointer;
        border-radius: 50%;
    }

    .Mibtn:hover {
        background: rgba(0,0,0,0.8);
    }
/*
.MIbtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    padding: 8px;
}
*/
.prev { left: 10px; }
.next { right: 10px; }

.dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 4px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background: white;
}















/* CSS Document 
    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background: #111;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .carousel {
        position: relative;
        width: 100%;
        max-width: 800px;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .carousel img {
        width: 100%;
       height: 500px;
        object-fit: cover;
    }

    .Mibtn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        border: none;
        color: white;
        font-size: 2rem;
        padding: 10px;
        cursor: pointer;
        border-radius: 50%;
    }

    .Mibtn:hover {
        background: rgba(0,0,0,0.8);
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .dots {
        text-align: center;
        position: absolute;
        bottom: 10px;
        width: 100%;
    }

    .dot {
        height: 12px;
        width: 12px;
        margin: 5px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
    }

    .active {
        background-color: #fff;
    }

*/