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

html {
	font-family: 'Roboto', sans-serif;
	font-size: 10px;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	background-color: #000;
}

.title,
.description {
	color: #fff;
	text-shadow: 3px 3px 10px rgba(255, 255, 255, 0.5);
}

.title {
	font-size: 8rem;
}

.description {
	margin-top: 2rem;
	font-size: 2rem;
}

@media (max-width: 700px) {
	.title {
		font-size: 5rem;
	}

	.description {
		font-size: 1.7rem;
	}
}

@media (max-width: 400px) {
	.title {
		font-size: 3rem;
	}

	.description {
		font-size: 1.3rem;
	}
}
