main {
    font-family: var(--fa);
    h1 {
        text-transform: uppercase;
        text-align: center;
        color: var(--mc);
        font-size: 30px;
    }
    .container-club {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-around;
        align-items: center;
        width: 95%;
        margin: 0 auto;
        .club {
            width: 250px;
            height: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            border: 1px solid var(--mc);
            border-radius: 15px;
            padding: 10px;
            box-sizing: border-box;
            background: #fff;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            text-align: center;
            text-decoration: none;
            .picture {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 200px;
                width: 100%;
                img {
                    max-width: 100%;
                    max-height: 100%;
                    object-fit: contain;
                }
            }
            .name {
                font-size: 18px;
                text-transform: uppercase;
                font-weight: bold;
                color: var(--mc);
            }
            transition: all ease-in-out 0.3s;
            &:hover {
                border: 1px solid transparent;
                border-radius: 20px;
                box-shadow: 0 2px 6px rgba(0,0,0,0.3);
            }
        }
    }
}

@media (max-width: 768px) {
    main {
        h1 {
            font-size: 25px;
        }
        .container-club {
            .club {
                height: 200px;
                padding: 7.5px;
                .picture img {
                    max-height: 150px;
                }
            }
        }
    }
}