@font-face {
	font-family: dinpro-regular;
	src: url(font/dinpro_regular.otf);
}

@font-face {
	font-family: dinpro-medium;
	src: url(font/dinpro_medium.otf);
}

:root {
	--c-green: rgb(0, 71, 53);
	--c-green-d: rgb(11, 57, 46);
	--c-green-l: rgb(6, 91, 45);
	--c-orange: rgb(255, 171, 13);
	--c-white: rgb(245, 245, 245);
	--c-black: rgb(0, 0, 0);
	--elevation: 0 1px 2px rgba(0, 0, 0, 0.2),
				 0 2px 4px rgba(0, 0, 0, 0.15),
				 0 4px 8px rgba(0, 0, 0, 0.1);
}

* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

html {
	margin: 0;
	padding: 0;
	min-width: 320px;
	font-family: dinpro-medium;
	font-size: 16px;
	color: var(--black);
	line-height: 150%;
}

body {
	margin: 0;
	padding: 0;
	//background: linear-gradient(to bottom, var(--c-green), var(--c-green-d));
	background: var(--c-white);
}

main {
	display: flex;
	flex-flow: column nowrap;
	justify-content: start;
	align-items: center;
	margin: 64px auto 0 auto;
	padding: 0;
	width: 600px;
	min-height: 100dvh;
	background: linear-gradient(to bottom, var(--c-white), var(--c-green));
	//background: var(--c-green);
	border-radius: 16px 16px 0 0;
	box-shadow: var(--elevation);
}

@media (width <= 640px) {
	main {
		margin: 0;
		width: 100%;
		border-radius: 0;
		box-shadow: none;
	}
}

header {
	display: flex;
	flex-flow: column nowrap;
	justify-content: start;
	align-items: center;
	margin: 0;
	padding: 32px 16px;
	width: 100%;
}


header figure {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
}

header figure img {
	margin: 32px 0;
	width: 128px;

}

header h1 {
	margin: 0;
	font-family: dinpro-medium;
	font-weight: normal;
	font-size: 1.5rem;
	text-align: center;
	line-height: 150%;
}

header ul {
	list-style-type: none;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	margin: 16px 0;
	padding: 8px;
}

header ul li {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	margin: 8px;
	padding: 0;
}

header ul li a {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
}

header ul li a i {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	padding: 8px;
	width: 48px !important;
	height: 48px !important;
	line-height: 100% !important;
	vertical-align: center !important;
}

section {
	display: flex;
	flex-flow: column nowrap;
	justify-content: start;
	align-items: center;
	margin: 0;
	padding: 0;
}
section figure {
	margin: 16px;
	padding: 0;
	background: var(--c-white);
	border: 8px solid var(--c-white);
	border-radius: 8px;
	box-shadow: var(--elevation);
}

section figure img {
	width: 100%;
	border-radius: 4px;
}

section figure figcaption {
	margin: 16px 8px 8px 8px;
	padding: 0;
	text-align: center;
}

a {
	font: inherit;
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--c-green);
}