﻿@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-v30-latin-regular.eot');
	src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-v30-latin-700.eot');
	src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

body {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #0C428E;
	font-weight: 400;
}

#wrapper {
	max-width: 680px;
	margin: 1rem auto;
	padding: 30px 60px;
	border: solid 2px #0C428E;
	overflow: hidden;
	position: relative;
	background: #D1EEFB;
}

strong {
	font-weight: 700;
}

header {
	display: flex;
	justify-content: center;
}

article {
	padding: 20px 0 0;
}

footer {
	margin: -50px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-direction: row-reverse;
}

h1 {
	font-size: 24px;
	margin: 16px 0;
	line-height: 28px;
	font-weight: 700;
}

img {
	max-width: 100%;
}

p:not(:last-child) {
	margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #0C428E;
	text-decoration: none;
	white-space: nowrap;
}

@media screen and (max-width:678px) {
	#wrapper {
		border: none;
		margin: 0;
		padding: 16px;
	}

	p {
		hyphens: auto;
		text-wrap: pretty;
	}
}

@media screen and (max-width:500px) {
	footer {
		flex-direction: column;
		align-items: center;
		margin-top: 16px;
	}

	br {
		display: none;
	}
}