.body-container
{
    color: white;
}

.body-container .row
{
    display: flex;
    flex-direction: column;
}

.body-container .row .col
{
    margin: 0 0 40px 0;
}

.body-container .row section
{
    padding: 10px 20px 10px 20px;
}

.body-container section#registered header .label,
.body-container section#games-played header .label
{
    font-size: 1.2rem;
}

.body-container .row .col canvas
{
    max-height: 300px;
}

@media (min-width: 992px)
{
    .body-container .row
    {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .body-container .row .col.col2-1
    {
        flex: 0 0 50%;
        max-width: 50%;
        box-sizing: border-box;
        padding: 0 20px 0 0px;        
    }
    .body-container .row .col.col2-2
    {
        flex: 0 0 50%;
        max-width: 50%;
        box-sizing: border-box;
        padding: 0 0px 0 20px;        
    }

}

/*
section#registered
{
    margin: 20px 0 0 0;
}

#canvas-registered
{
    max-height: 200px;
}
@media (min-width: 768px)
{
    #canvas-registered{
        max-height: 240px;
    }
}
@media (min-width: 992px)
{
    #canvas-registered{
        max-height: 310px;
    }
}
@media (min-width: 1240px)
{
    #canvas-registered{
        max-height: 350px;
    }
}

#canvas-games-played
{
    max-height: 350px;
}
*/