html {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.wrap {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
	background: rgba(245, 201, 202, 0.6);
	background: radial-gradient(transparent, rgba(245, 201, 202, 0.6));
}

.content {
	position: relative;
	width: 100%;
	padding: 20px;
	text-align: center;
}

.logo {
	width: 100%;
	max-width: 640px;
	margin: auto;
}

.title {
	position: relative;
	margin: 20px 0;
	font-family: Arial;
	font-size: 1.5rem;
	font-weight: 300;
}

a {
	color: inherit;
	text-decoration: none;
}