﻿body {
    margin: 0;
}

.carrusel {
    height: 26vh;
    display: flex;
    align-items: center;
}

.carrusel-items {
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 30px 0px;
}

.carrusel-item {
    min-width: 400px;
    max-width: 400px;
    height: 82px;
    cursor: pointer;
}

    .carrusel-item img {
        width: 98%;
        height: auto;
        object-fit: cover;
        padding: 1px;
    }

    .carrusel-item:hover {
        transform: scale(1.2);
    }
