/* -------------------- 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: #ffffff;
    font-weight: 600;
    font-size: 2em;
    background-image: url("/graphics/background.png");
    background-size: 12%;
    background-color: #282837;
}

.column
{
    display: flex;
    flex-direction: column;
    align-items: center;
}