*, *:before, *:after {
	box-sizing: border-box;
}

:root {
	--blue: #2b375f;
}

html {
	font-family: 'Roboto Condensed', Arial, sans-serif;
	font-size: 1.125rem;
	height: 100%;
	overflow-x: hidden;
}

body {
	margin: 0 auto;
	padding: 1rem 0;
	max-width: 1100px;
	background-color: var(--blue);
	color: white;
	text-align: center;
}

a {
	color: white;
	text-underline-position: under;
	text-decoration-color: rgb(255 255 255 / 50%);
}

figure {
	margin: 1rem 0;
	position: relative;
}

figure img {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 3 / 2;
}

.sign {
	background-image: url('./assets/sign.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	min-width: 58%;
	height: 30.5%;
	position: absolute;
	transform: translateX(-50%);
	width: fit-content;
	z-index: 5;
	left: 49.4%;
	top: 65%;
	text-align: center;
	font-size: 3.75vw;
	line-height: 1.475;
	text-transform: uppercase;
	font-style: italic;
	padding: 0.75% 2.5%;
}

h1, h2 {
	font-size: inherit;
	margin: 0;
	white-space: nowrap;
}

h2 {
	font-size: 75%;
}

h1 span, h2 span {
	font-size: 160%;
}

h1 small, h2 small {
	font-size: inherit;
}

.pp {
	vertical-align: middle;
	transform: translateY(-12%);
}

button {
	background: white;
	color: var(--blue);
	border: 2px solid;
	font-family: inherit;
	font-size: 140%;
	font-weight: bold;
	text-transform: uppercase;
	padding: 0.5em 1em;
	width: 100%;
	max-width: 12em;
	border-radius: 2em;
	cursor: pointer;
	position: relative;
	z-index: 1;
}

button:hover, button:focus {
	background: #ddd;
}

details {
	margin-top: 2rem;
}

summary {
	cursor: pointer;
}

form {
	padding: 1rem;
	margin: 0.5rem 0;
}

form label {
	display: inline-block;
	border: 1px solid rgb(255 255 255 / 50%);
	border-radius: 1.5em;
	padding: 0.5em 1.25em 0.5em 1em;
	margin: 0 0.5rem 0.5rem 0;
}

form label:has(:checked) {
	background: white;
	color: var(--blue);
}

input[type="checkbox"] {
	width: 1.25em;
	height: 1.25em;
	vertical-align: middle;
}

.red {
	color: #e41525;
}

hr {
	border: 1px solid rgb(255 255 255 / 10%);
	border-width: 1px 0 0 0;
	margin: 2rem auto;
	max-width: 50%;
}

footer {
	margin: 15vh 0 2em;
}

footer .flag {
	margin: 0 0.333em;
}


@media screen and (min-width: 1100.1px) {
	.sign {
		font-size: 2.2916666667rem;
	}
}

@media screen and (max-width: 767px) {
	figure img {
		aspect-ratio: 1.125 / 1;
	}

	.sign {
		min-width: 77%;
		font-size: 5.125vw;
	}
}