.boxTeam {
    width: 40%;
    gap: 25px;
    background: black;
    display: flex;
    border-radius: 20px;
    flex-direction: row;
    padding: 2em;
    text-decoration: none;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.boxTeam:hover{
    transform: scale(1.02);
}

.gaucheBoxTeam {
    width: 30%;
    display: flex;
    justify-content: center;
}

.droiteBoxTeam {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

a.containerLogoBoxTeam {
    width: 150px;
}

img.logoBoxTeam {
    width: 100%;
}

h1.titleBoxTeam{
    color: #ff0055 ;
}

a.boxTeam.No.Team {
    display: none;
}

@media screen and (max-width: 768px) {


    .boxTeam {
        width: 70%;
        align-items: center;
    }

    .boxes {
        display: flex;
        gap: 30px;
        flex-direction: column;
        align-items: center;
        margin: 20px 0;
    }

    h1.titleBoxTeam {
        text-align: center;
    }
    
    .droiteBoxTeam p {
        display: flex!important;
        flex-direction: column!important;
        text-align: center;
    }

    .droiteBoxTeam{
        gap: 15px;
    }

}