﻿html_team {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.column_team {
    float: left;
    width: 33.3%;
    margin-bottom: 16px;
    padding: 0 8px;
}

@media screen and (max-width: 650px) {
    .column_team {
        width: 100%;
        display: block;
    }
}

.card_team {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.container_team {
    padding: 0 16px;
}

    .container_team::after, .row_team::after {
        content: "";
        clear: both;
        display: table;
    }

.title_team {
    color: grey;
}

.button_team {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

    .button_team:hover {
        background-color: #555;
    }
