@charset "utf-8";

:root {
	font-size: 16px;
}
* {
	box-sizing: border-box;
	margin: 0;
}
html {
	min-height: 100%;
}
body {
	font: 0.875em/1.3em  "Segoe UI", Calibri, sans-serif;
	color: #000;
}
#wrapper {
	position: relative;
	margin: 1rem auto;
	overflow: hidden;
	max-width: 930px;
	border: solid 1px #000;
	background: #fff;
}
p {
	padding-bottom: 1rem;
	text-align: justify;
	hyphens: auto;
}
h1 {
	margin: 0rem 0rem 1rem;
	font-size: 2.5em;
	line-height: 1.1em;
	font-weight: 500;
}
h1 small {
	font-size: 0.7em;
}
h2 {
	font-size: 1em;
	line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
}
ul {
	padding: 0rem 0rem 1rem 0rem;
	list-style: none;
}
li {
	padding: 0 0 0 16px;
}
ul li:before {
	content: "\2022";
	font-size: 1em;
	margin: 0 0 0 -16px;
	float: left;
}
.logo {
	display: flex;
	justify-content: end;
	padding: 1rem 2rem;
}
article {
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.content {
	width: 75%;
}
a.button {
	font-weight: 600;
	background: #0BA2E3;
	color: #FFF;
	font-size: 14px;
	line-height: 1.8;
	cursor: pointer;
	display: inline-block;
	padding: 4px 8px;
	white-space: nowrap;
	text-decoration: none;
}

footer {
	padding: 0 2rem 3rem;
}
figure {
	margin: 0 0 1rem;
	display: flex;
	justify-content: center;
}
.social-media {
	display: flex;
}
.social-media img {
	padding-right: 0.4rem;
}
.rewards p {
	text-align: center;
	color: #C60086;
}
img {
	max-width: 100%;
	height: auto;
}
@media only screen and (max-width:929px) {
	#wrapper {
		border: none;
		margin: 0 auto;
	}
	p {
		text-align: left;
	}
	.content {
		width: 65%;
	}
}
@media only screen and (max-width:635px) {
	.content {
		width: 100%;
	}
	article, footer {
		display: block;
		padding: 1rem;
	}
	.rewards {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}
