@import url('https://fonts.googleapis.com/css?family=Raleway');
body {
    background-color: rgb(220, 220, 220);
    font-family: 'Raleway', sans-serif;
    display: flex;
    justify-content: center;
}

.leaders-block {
    padding-top: 15px;
    padding-bottom: 15px;
}

.container {
    flex-basis: 800px;
    flex-grow: 0;
    flex-shrink: 1;
}

.column-block {
    padding-top: 15px;
}

.column {
    flex-basis: 0px;
    flex-grow: 1;
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
}

.row {
    flex-basis: 0px;
    flex-grow: 1;
    flex-shrink: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.leader-box {
    flex: 1 1 0px;
    padding: 5px;
    align-self: center;
    display: flex;
}

.box {
    flex: 1 1 0px;
    background-color: white;
    padding: 5px;
    border: 1px solid black;
    display: flex;
}

img {
    max-height: 150px;
    border-radius: 50%;
}