.content {
	width: 100%;
	display: grid;
	align-items: center;
	align-content: center;
}

h1,
p {
	text-align: center;
}

a {
	text-decoration: underline;
}

iframe {
	margin: auto;
}

#mobile {
	display: none;
}

.fullwidth~[type="button"] {
	width: 150px;
	text-align: right;
}

:not(lang-switcher)[type="button"] {
	grid-area: submit;

	display: grid;
	justify-content: center;
	align-items: center;

	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;

	color: white;
	background-color: var(--en-blue);
	border-radius: 28px;
	border: none;
	padding: 0px 24px;
	height: 80%;
	z-index: inherit;

	transition: background-color 300ms ease;

	font-size: calc(18px * var(--font-scale));
	font-weight: 500;
}

:lang(eo) :not(lang-switcher)[type="button"] {
	background-color: var(--eo-green);
}

@media screen and (max-width: 800px) {
	#mobile {
		display: unset;
	}

	#fullwidth {
		display: none;
	}

	[type="button"] {
		max-width: 125px;
	}
}