function boxOffHover(box) {
    box.style.background = '#ffffff';

}

function boxOnHover(box) {
    box.style.background = '#fcf4f3';
    box.style.cursor = 'pointer';
}
