.title {
    color: black;
    margin-top: 0px;
}

main {
    padding: 40px 10%;
}

.red-line {
    width: 58px;
    height: 5px;
    background-color: #BB1A21;
    margin: -10px 0 25px 0;
}

.paragraph {
    color: #222222;
    text-align: justify;
}

.space {
    height: 37px;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}

.item {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 200px;
    align-items: center;

    .round-image {
        height: 180px;
        width: 180px;
        border-radius: 50%;
        filter: grayscale(100%);
        transition: all 0.3s ease; 
        overflow: hidden;
        object-fit: cover;
    }
    
    .round-image:hover {
        filter: none;
        transform: scale(1.05); 
    }
    
    .name {
        color: #000000;
    }

    .zone {
        color: #D80027;
    }

    .description {
        color: #000000;
    }
}