:root {
    --main-bg-color : #fff;
    --main-color    : #444;
    --error-color   : #9f3a38;
}

html, body {
    margin     : 0;
    padding    : 0;
    box-sizing : border-box;
}

body {
    font-family: 'Baloo Thambi 2', cursive;
    font-size        : 16px;
	line-height      : 1.5;
    background-color : var(--main-bg-color);
    color            : var(--main-color);
}

.centered {
    display         : flex; 
    height          : 100%;
    flex-direction  : column;
    align-items     : center; 
    justify-content : center; 
    align-content   : center;
}