.teamLogo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    margin: 2rem auto;
}

.team_logo img {
    max-width: 180px;
    height: auto;
}

.team_name h2 {
    font-size: 7rem;
    margin: 0;
}

.team_description {
    max-width: 900px;
    margin: 0 auto 2rem auto;
    padding: 0 1rem;

}

.jerseys h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.jersey-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.jersey-images figure {
    flex: 1 1 300px;
    max-width: 100%;
}

.jersey-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.roster {
    /* max-width: 1000px; */
    margin: 0 auto;
    padding: 1rem;
}

.roster table {
    margin-bottom: 2rem;
}

@media (max-width: 750px) {

    .team_name h2 {
        font-size: 4rem;
        margin: 0;
    }
    .teamLogo {
        flex-direction: column;
    }

    .jersey-images {
        flex-direction: column;
        align-items: center;
    }

    .jersey-images figure {
        width: 90%;
        max-width: 350px;
    }
}

@media (max-width: 350px) {

    .team_name h2 {
        font-size: 1.5rem;
        margin: 0;
    }
    
}