* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    background: url(../img/Carrusel-EquipoSemillero.JPG) no-repeat center center;
    background-size: cover;
    background-position: center 60%;
}

.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: 108px;
    width: 115px;
    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);
}

.text-purple {
    font-size: 24px;
    color: #76225e;
    margin-top: 10px;
}

/* Small devices such as large phones (640px and up) */
@media only screen and (max-width: 640px) {
    .text-purple{
        text-align: justify;
    }
}

/* Medium devices such as tablets (768px and up) */
@media only screen and (max-width: 768px) {
    .name-bg {
        width: 100%;
    }

    .name-bgF {
        width: 100%;
    }
}

/* Large devices such as laptops (1024px and up) */
@media only screen and (max-width: 1024px) {}

/* Largest devices such as desktops (1280px and up) */
@media only screen and (max-width: 1280px) {}