@import "../styles.css";

#teamSection {
    width: 100%;
    margin-top: 20px;
}

#teamSection h2 {
    color: var(--neon-magenta-core);
    font-family: "Neonderthaw", cursive;
    font-size: 3em;
    text-shadow:
        0 0 2px var(--neon-magenta-core),
        0 0 10px var(--neon-magenta-core),
        0 0 18px rgba(255, 77, 255, 0.95),
        0 0 45px var(--neon-magenta-soft),
        0 0 60px rgba(255, 77, 255, 0.45);
    animation: neonFlicker 3s infinite alternate;
}

#teamContainer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

#teamContainer .teamMember {
    width: 90%;
    max-width: 400px;
    height: auto;
    color: white;
    font-family: "Tilt Neon", sans-serif;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.35);
    text-align: center;
}

#teamContainer .teamMember img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

#teamContainer .teamMember h3 {
    font-size: 1.8em;
    margin-top: 12px;
    margin-bottom: 1.0em;
    color: var(--neon-blue-core);
    text-shadow:
        0 0 2px var(--neon-blue-core),
        0 0 10px var(--neon-blue-core),
        0 0 18px rgba(255, 77, 255, 0.95),
        0 0 45px var(--neon-blue-soft),
        0 0 60px rgba(255, 77, 255, 0.45);
        animation: neonFlicker 2s infinite alternate;
}
#teamContainer .teamMember p {
    font-size: 1.1em;
}
#teamContainer .teamMember hr {
    display: block;
}
@media screen and (min-width: 768px) {
    #teamContainer .teamMember hr{
        display: none;
    }
    
}