body,html {
	background: #fff;
	color: #414042;
	font-family: Arial, Helvetica, sans-serif;
	height: 100%;
	margin: 0;
	padding: 1rem;
}

body {
	align-items: center;
	justify-content: center;
	display: flex;
	flex-direction: column;
}

.content {
	display: flex;
	flex-direction: column;
	max-width: 800px;
	padding: 1rem 0;
	width: 100%;
}

.content .logos {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	justify-content: center;
	margin-bottom: 2rem;
	width: 100%;
}

.content .logos img {
	height: 3rem;
	width: auto;
}

@media screen and (max-width: 767px) {
	.content .logos {
		flex-direction: column;
		gap: 1rem;
	}
	.content .logos img {
		height: 2rem;
	}
}

.content a {
	color: #99be0f;
	text-decoration-color: #414042;
}

.content a:hover {
	color: #414042;
	text-decoration-color: #414042;
}