* { margin: 0; padding: 0; box-sizing: border-box; } body { background-image: url(../img/fondo.png); } .container-all{ display: flex; flex-direction: column; align-items: center; justify-content: center; } .carousel-container { width: 80%; display: flex; flex-direction: column; align-items: center; overflow: hidden; } .carousel { display: flex; justify-content: center; } .carousel-track { display: flex; transition: transform 0.4s ease-in-out; } .card-car { min-width: 200px; margin: 10px; display: flex; flex-direction: column; align-items: center; font-size: 24px; border-radius: 10px; filter: grayscale(100%); transition: filter 0.3s ease; } .card-car.active { filter: grayscale(0%); } .carousel-controls { margin-top: 15px; display: flex; justify-content: space-between; } .carousel-btn { margin: 0 10px; display: flex; align-items: center; justify-content: center; background-color: #ffffff; color: #76225e; font-weight: bold; font-size: 20px; border: none; width: 50px; height: 50px; cursor: pointer; border-radius: 50%; } .team { width: 80%; } .team img { height: 70px; width: 70px; border-radius: 50%; margin: 0 10px; } .member { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: 40px; } .name-bg { margin-top: 15px; width: 40%; background-color: #76225e; text-align: center; } .name-bgF { margin-top: 15px; width: 40%; background-color: #03C0A8; text-align: center; } .name { font-size: 22px; color: white; } .position { margin-top: 10px; font-size: 22px; color: rgb(37, 37, 37); }