@media screen {
	@viewport,
	@-ms-viewport,
	@-o-viewport {
		width: device-width;
		zoom: 1;
	}
}

html {
	font-size: 62.5%;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	padding: 0;
	margin: 0;
	@include rem('font-size', 1.6rem);
	line-height: 1.2;
	word-wrap: break-word;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin:  0 0 1em 0;
	padding: 0;
	line-height: 1.2;
}

a {
	text-decoration: none;
}

p {
	margin: 0 0 0.5em 0;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

a,
input,
textarea,
select,
button,
label {
	cursor: pointer;
}

textarea {
	resize: none;
}

ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
	li {
		list-style: none;
	}
}

dl,
dd {
	margin: 0;
}

address {
	font-style: normal;
}

fieldset {
	padding: 0;
	margin: 0;
	border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

[hidden] {
  display: none;
}

body {
	font-size: 2rem;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-color: #fff;
}

header,
footer {
	width: 100%;
}

header {
	height: 7rem;
}
header h1 {
	margin: 0;
}

footer {
	padding: 0.5em;
	height: 2rem;
	font-size: 0.5em;
	text-align: right;
}

blockquote {
	margin: 0;
	padding: 1.5rem;
	min-height: calc(100vh - 15rem);
	background-color: #eee;
	background: linear-gradient(to bottom, rgba(238,238,238,1) 0%,rgba(255,255,255,0) 100%);
	border-radius: 1.5rem;
}

#mainContainer {
	display: flex;
	flex-wrap: wrap;
	max-width: 80rem;
	margin: 0 auto;
}