* {
	margin: 0;
	padding: 0;
}

body, html {
	font-family: "Roboto";
	width: 100%;
	height: 100%;
}

.center {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 25px;
}

.center > p {
	text-align: center;
	font-size: 20px;
	max-width: 550px;
}

.social {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 12px;
	opacity: 0.5;
	transition: opacity 0.2s;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.social > img {
	width: 32px;
}

.social > p {
	font-size: 18px;
}

.social:hover {
	opacity: 0.75;
}

a.hidden {
	text-decoration: inherit;
	color: inherit;
}