@charset "UTF-8";
/* CSS Document */

html {
	--col-gold: #B89357;
	--col-black: #000;
	--col-white: #fff;
}


body {
	background: var(--col-gold);
	color: var(--col-white);
	font-family: 'DM Sans', sans-serif;
	font-weight: 300;

	-webkit-font-smoothing: antialiased;

	overflow: hidden;

	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

#logo {
	width: 300px;
	margin-bottom: 160px;
}