html, body {
	margin: 0;
	padding: 0;

    font-family: 'Genos', 'Orbitron', 'Montserrat';
    height: 100%;

    line-height: 1.5em;

    color: var(--foreground-text);
}

html {
    background-color: var(--background-color);

    background-image: url("/backgrounds/home_background.jpg");
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
}

body {
	display: flex;
	flex-direction: column;
}

a {
    color: var(--nord-frost-light-blue);
}

a:visited {
    color: var(--nord-aurora-purple);
}


@media screen and (max-width: 960px) {
	#contentContainer {
		width: 95%;
	}
}