/* ****************************************************************************
 * Scratch all formatting                                                     *
 *                                                                            *
 * Author: ETM                                                                *
 * Created: 20230113                                                          *
 * Version 1.00 Initial                                                       *
 *         1.01 Covered gray elements with white.                             *    
 * *************************************************************************  */

/* color grid container white */
div.site-grid{
    background-color:WHITE;
}
body{
    background-color: white;
}

/* All container */
.sa_contain_all {
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:20px;
    justify-content:space-evenly;
    align-content:center;
    align-items:stretch;
    justify-items:normal;

    background-color: WHITE;
}

.sa_game_logo {    
    width:150px;
}

.sa_box {
    padding:20px;
}

.sa_card_box {
    display:grid;
    grid-template-columns: .25fr 1fr 1fr;
    grid-gap:20px;
    justify-content:space-evenly;
    align-content:center;
    align-items:stretch;
    justify-items:normal;

    background-color: WHITE;
}

.sa_game_card {
    max-width:160px;
}