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

:root {
	font-size: 15px;
}

html {
	background: #000;
}

body {
	font-family: "Roboto Mono", monospace;
	min-height: 100vh;
	color: #57585c;
	color: var(--color-text);
	background-color: #000;
	overflow: hidden;
	margin: 0;
}

.content {
	color: #ffffff;
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: 100vh;
	position: relative;
	justify-content: flex-start;
	align-items: center;
}

.content__title {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 100;
	font-size: 1rem;
	color: var(--color-title);
	line-height: 1;
	top: 50%;
    margin: 0;
    transform: translate(0px, -50%);
}