﻿@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: #fff;
	font-weight: 400;
}

#wrapper {
	max-width: 370px;
	margin: 1rem auto;
	border: solid thin #242021;
	overflow: hidden;
	position: relative;
	background: #255898;
}

:is(strong, h1) {
	font-weight: 700;
}

header {
	display: flex;
	flex-direction: column;
	align-items: center;
}

article {
	padding: 0 16px;
}

footer {
	padding: 0 16px 16px;
}

footer p {
	font-size: 14px;
}

:is(h1, h2, p) {
	text-align: center;
}

h1 {
	font-size: 29px;
	margin: 16px 0;
	line-height: 1.2;
}

h1 span {
	font-size: 18px;
	display: block;
}

h2 {
	font-size: 16px;
	margin: 10px 0;
	line-height: 20px;
	font-weight: 400;
	text-decoration: underline;
}

img {
	max-width: 100%;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #fff;
	text-decoration: underline;
	font-size: 16px;
	white-space: nowrap;
}

ul {
	margin: 0 0 15px 20px;
	list-style: none;
}

ul li {
	padding-left: 25px;
}

li:before {
	text-indent: -25px;
	content: "\2022";
	color: #fff;
	float: left;
	font-size: 25px;
	font-family: Arial, sans-serif;
}

@media screen and (max-width:368px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	:is(p, ul) {
		hyphens: auto;
		text-wrap: pretty;
		margin-left: 0;
	}

	h1 {
		font-size: 26px;
	}
}