﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body,
html {
	height: 100%;
}
body {
	background: #000;
	font-size: calc(100vw / 1440 * 10);
	font-family: Arial, sans-serif;
	color: #000000;
	overflow-x: hidden;
}

#layout {
	position: relative;
	z-index: 2;
	min-height: 100%;
	overflow-x: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #171a28;
}

@media screen and (max-width: 1200px) {
	body {
		font-size: calc(100vw / 1200 * 10);
	}
}

@media screen and (max-width: 600px) {
	body {
		font-size: calc(100vw / 600 * 10);
	}
}
