/* --------------------------------------------------------------------------
		Colours
	-------------------------------------------------------------------------- */
#container {
	background: #333333;
}
html, svg, h3, p, a {
	color: #ddcb77;
	fill: #ddcb77;
}
a:hover,a:focus,a:active {
	color: #cccccc;
}
.stroke {
	background: #ddcb77;
}

/* --------------------------------------------------------------------------
		Global Settings
	-------------------------------------------------------------------------- */
html {
	font-family: Helvetica , Arial, Verdana, Geneva, sans-serif;
	font-size: 62.5%; /* 100% = 16px */
}

body {
	font-size: 1.5em; /* 62.5% of html.font-size = 10px */
}
/* --------------------------------------------------------------------------
		Headings
	-------------------------------------------------------------------------- */
h3 {
	font-family: Helvetica, Arial, Verdana, Geneva, sans-serif;
	font-size: 20px;
	font-size: 2rem; /* (body/font-size) x 1.4  = 14px */
	font-weight: bold;
	margin: 0 0 50px 0;
	margin: 0 0 5rem 0;
	text-align: center;
}
/* --------------------------------------------------------------------------
	Paragrafs
-------------------------------------------------------------------------- */

p, a {
	font-size: 13px;
	font-size: 1.3rem; /* (body/font-size) x 1.2  = 12px */
	line-height: 20px;
	line-height: 2rem;
	margin: 10px 0;
	margin: 1rem 0;
	text-align: center;
}
footer p, footer a {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 11px;
	font-size: 1.1rem; /* (body/font-size) x 1.2  = 12px */
	margin: 10px 0;
	margin: 1rem 0;
	text-align: center;
}
svg {
	position: relative;
	display: block;
	width: 60%;
	height: 100%;
	margin-left: 20%;
	margin-bottom: 50px;
	margin-bottom: 5rem;
}
/* --------------------------------------------------------------------------
	Links
-------------------------------------------------------------------------- */
a, a:visited {
	text-decoration: none;
}

/*--- Stroke ---*/
.stroke {
	display: none;
}
/* --------------------------------------------------------------------------
	Media Queries - from 0px - 479px - Mobile Portrait
-------------------------------------------------------------------------- */
@media screen and (min-width: 0em) { /* Standard 16px / 1em reference (min-width px/16px) */

}

/* --------------------------------------------------------------------------
	Media Queries - from 480px - 639px - Mobile Landscape 
-------------------------------------------------------------------------- */
@media screen and (min-width: 30em) { /* Standard 16px / 1em reference (min-width px/16px) */
	
}

/* --------------------------------------------------------------------------
	Media Queries - from 640px - 959px - Tablet Portrait
-------------------------------------------------------------------------- */
@media screen and (min-width: 40em) { /* Standard 16px / 1em reference (min-width px/16px) */
	/* --------------------------------------------------------------------------
		Global
	-------------------------------------------------------------------------- */
	h3, p, span{
		text-align: left;
	}
	/*--- Stroke ---*/
	.stroke {
		position: absolute;
		display: block;
		top: 50%;
		right: 30px;
		right: 3rem;
		width: 2px;
		width: 0.2rem;
		height: 230px;
		height: 23rem;
		margin-top: -115px;
		margin-top: -11.5rem;
	}
/* --------------------------------------------------------------------------
	Media queries - from 960px - 1279px < - Tablet Landscape
-------------------------------------------------------------------------- */
@media screen and (min-width: 60em) { /* Standard 16px / 1em reference (min-width px/16px) */
}

/* --------------------------------------------------------------------------
	Media queries - from 1280px < - Desktop
-------------------------------------------------------------------------- */
@media screen and (min-width: 80em) { /* Standard 16px / 1em reference (min-width px/16px) */
	
}