﻿@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700,800|Open+Sans+Condensed:700);

/* =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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: thin dotted;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px 0;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Responsive images */
img {
	max-width: 100%; 
	height: auto;
}


/* =Basic structure
-------------------------------------------------------------- */

html {
	height: 100%;
}
body {
	height: 100%;
	background: #fff;
	color: #000; 
	font: 100% "Open Sans", Helvetica, Arial, sans-serif;
	text-rendering: optimizeLegibility;
	text-align: center;
	line-height: 1.5;
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	-webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

a {
	outline: none;
	color: #000;
}
a:visited {
	color: #000;
}
a:hover, a:active {
	color: #B61D8E;
}
h1 {
	margin: 0;
	line-height: 1;
}
h1 img {
	
}

.content {
	padding: 60px 10%;
	background-image: url('pink-blocks.png'), url('footer-blocks.png');
	background-position: left top, right bottom;
	background-repeat: no-repeat, no-repeat;
	background-size: 15% auto, 20% auto;
}
h2 {
	font-family: "Open Sans Condensed", "Open Sans", Arial, Helvetica, sans-serif;
	font-size: 2em;
	color: #B61D8E;
	line-height: 1.3;
	margin: 1.5em 0;
	text-transform: uppercase;
	font-weight: bold;
}
p { 
	margin: 0;
	line-height: 1.5;
}

/* =Media queries
-------------------------------------------------------------- */

@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}

@media screen and (min-width: 768px) {

	body	{
		background: #FFF url('bg.jpg') no-repeat center top;
		background-size: cover;
		height: 100%;
	}
	.content {
		padding: 80px 18%;
		background-size: 12% auto, 18% auto;
	}

}

@media screen and (min-width: 1200px) {

	.content {
		padding: 80px 250px;
		background-size: auto, auto;
	}


}

