#content_container
{
    width : 100%;
    min-height : calc(100vh - 170px);
}

#content_main
{
    width : 100%;
    min-height : calc(100vh - 170px);
    height : 100%;

    align-items: center;
    justify-content: flex-start;
    flex-direction: column;

}

.tile_container
{
    width : calc(100% - 20px);

    padding : 10px;

    justify-content: center;
    flex-wrap: wrap;
}

.container_tile
{
    width : 100%;
    max-width : 480px;

    padding : 10px;
    padding-top : 0px;
    padding-right : 0px;

    margin-top : 10px;
    margin-right : 10px;

    justify-content: flex-start;
    flex-wrap: wrap;

    border-radius: 3px;
}

.white_bg
{
    background-color : white;
}

.page_title
{
    width : 100%;
    margin-top : 10px;
}

.page_title h1
{
    color : var(--header-bg-color);
}