﻿:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

body {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #242021;
}

#wrapper {
	max-width: 800px;
	margin: 1rem auto;
	border: solid 2px #05AA8C;
	overflow: hidden;
	position: relative;
}

@-webkit-keyframes slidy {
	0% {
		left: 0%;
	}

	28% {
		left: 0%;
	}

	33% {
		left: -100%;
	}

	62% {
		left: -100%;
	}

	67% {
		left: -200%;
	}

	95% {
		left: -200%;
	}

	100% {
		left: -300%;
	}

}

@keyframes slidy {
	0% {
		left: 0%;
	}

	28% {
		left: 0%;
	}

	33% {
		left: -100%;
	}

	62% {
		left: -100%;
	}

	67% {
		left: -200%;
	}

	95% {
		left: -200%;
	}

	100% {
		left: -300%;
	}

}

header section img {
	width: 25%;
	float: left;
}

header section {
	position: relative;
	width: 400%;
	-webkit-animation-duration: 23s;
	-webkit-animation-name: slidy;
	-webkit-animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation: 23s slidy infinite;
	overflow: hidden;
}

figure {
	display: flex;
	justify-content: center;
	padding: 16px;
}

article {
	padding: 60px 60px 0;
}

footer {
	padding: 0 60px 60px;
}

h1 {
	font-size: 21px;
	margin: 16px 0;
	line-height: 28px;
	text-align: center;
	color: #05AA8C;
}

h2 {
	font-size: 17px;
	margin: 16px 0 6px;
	line-height: 21px;
	font-weight: 700;
	color: #05AA8C;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

p:not(:last-child) {
	margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #242021;
	text-decoration: none;
	white-space: nowrap;
}

ul {
	margin: 0 0 0 21px;
	list-style: none;
}

ul li {
	padding-left: 25px;
}

li:before {
	text-indent: -25px;
	content: "\2022";
	color: #242021;
	float: left;
	font-size: 15px;
}

@media screen and (max-width:798px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	:is(p, ul) {
		hyphens: auto;
		text-wrap: pretty;
	}

	article {
		padding: 16px 16px 0;
	}

	footer {
		padding: 0 16px 16px;
	}
}

@media screen and (max-width:480px) {
	ul {
		margin-left: 0;
	}
}