/*
the css of the body
define the background color of the page
*/
.body_background{
    height: 100%;
    width: 100%;
    margin: 0rem;
    background-color: #fffeff;
    display:flex;
    flex-direction:column;
}
/*
the css of the screen
*/
html
{
    height: 100%;
    background-color: #fffeff;
}