/* -------------------- BOX SIZING -------------------- */
*, *:after, *:before
{
	box-sizing: border-box;
}

/* -------------------- COLOURS -------------------- */
:root
{
	--white: #ffffff;
	--black: #000000;

    --shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
}

/* ------------------------------------------------ */
/* -------------------- COMMON -------------------- */
/* ------------------------------------------------ */
.hidden
{
	display: none !important;
}

.invisible
{
    opacity: 0;
}

.template
{
	display: none !important;
}

/* ---------------------------------------------- */
/* -------------------- MAIN -------------------- */
/* ---------------------------------------------- */
body
{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    color: #D5D5D5;
    font-weight: 600;
    font-size: 2em;
    background-color: #404040;
}