/** RESET */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
pre {
	max-width: 100%;
}
html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}
body {
	height: 100%;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}
ul, ol {
	list-style: none;
}
blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	quotes: none;
	border-left: none !important;
	font-size: inherit !important;
}
a:focus,
a:hover,
a:active {
	outline: 0;
	text-decoration: none;
}
a.btn:focus,
a.btn:hover,
a.btn:active {
	outline: 0;
	text-decoration: none;
}
a img {
	border: 0;
}
img {
	max-width: 100%;
	height: auto;
}
button, input[type="text"], input[type=textfield], input[type="submit"], input[type=search], select {
	-webkit-appearance: none;
	border-radius: 0;
}
.clear,
.clearfix {
	clear: both;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	transition: lightgray 5000s ease-in-out 0s;
	box-shadow: 0 0 0px 1000px transparent inset;
	-webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

/* TYPO */
html,
body {
	font-family: 'Work Sans', sans-serif;
	color: #000000;
	font-weight: 300;
	font-size: 1rem;
}
a,
a:focus,
a:active {
	color: #248b43;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

/* content */
.container {
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	align-items: center;
	margin: 2rem;
	background-color: #EDEDEE;
	width: calc(100vw - 4rem);
	height: calc(100vh - 4rem);
	transition: all ease-in 0.3s;
	-webkit-transition: all ease-in 0.3s;
	-ms-transition: all ease-in 0.3s;
	-o-transition: all ease-in 0.3s;
}
.container .content {
	width: 60%;
	background-color: #ffffff;
	padding: 3rem;
	transition: all ease-in 0.3s;
	-webkit-transition: all ease-in 0.3s;
	-ms-transition: all ease-in 0.3s;
	-o-transition: all ease-in 0.3s;
}
.container .content img {
	width: 60%;
}
.container .content .content-text {
	margin-top: 2rem;
}
.container .content .content-text p {
	line-height: 1.7;
}
.container .content .content-text p span.mail {
	line-height: 2.5;
}

/* MEDIA QUERIES */

@media screen and (max-width: 950px) {

	.container {
		margin: 1.5rem;
		background-color: #EDEDEE;
		width: calc(100vw - 3rem);
		height: calc(100vh - 3rem);
	}
	.container .content {
		width: 70%;
		background-color: #ffffff;
		padding: 2rem;
	}

}

@media screen and (max-width: 680px) {

	.container {
		margin: 1rem;
		width: calc(100vw - 2rem);
		height: calc(100vh - 2rem);
	}
	.container .content {
		width: 80%;
		padding: 2rem;
	}

}

@media screen and (max-width: 415px) {

	html,
	body {
		font-size: 0.9rem;
	}
	.container {
		margin: 0;
		width: 100vw;
		height: 100vh;
	}
	.container .content {
		width: 90%;
		padding: 1rem;
	}

}
