/* @override http://localhost:8888/style.css */

/*****Generic Classes*****/  
html {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}
body {
	width: 100%;
	color: #fff;
	background-color: #000;
	position: relative;
	height: 100%;
	padding: 0;
	margin: 0;
	font: 11px Helvetica, Arial, sans-serif;
	list-style: none;
}
div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote,  
pre, form, fieldset, table, th, td, tbody, img {
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
	font-weight: normal;
}

/*****Basic Layout*****/

#wrapper {
	width: 100%;
	height: 100%;
	display: table;
	position: relative;
	margin-right: auto;
	margin-left: auto;
}

#content {
	display: table;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 20px;
	text-align: center;
	margin-top: 4%;
}

img {
	width: 100%;
	height: auto;
	background-repeat: no-repeat;
}

a.link {
	display: inline-block;
	color: #fff;
	font: 24px 'Vollkorn', serif;
	letter-spacing: 6px;
	margin-top: 80px;
	text-decoration: none;
	border: 1px solid silver;
	padding: 10px 20px;
}

/* iPhone 5 portrait */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) 
and (orientation : portrait) { 

#content {
	display: table;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 20px;
	text-align: center;
	margin-top: 6%;
}

a.link {
	display: inline-block;
	color: #fff;
	font: 24px 'Vollkorn', serif;
	letter-spacing: 6px;
	margin-top: 60px;
	text-decoration: none;
	border: 1px solid silver;
	padding: 10px 20px;
}

}

/* iPhone 5 Landscape*/
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) 
and (orientation : landscape) { 

#content {
	width: 200px;
	margin-top: 10px;
}

a.link {
	font-size: 18px;
	margin-top: 20px;
}

}

/* iPad Portrait*/

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait)
and (-webkit-min-device-pixel-ratio: 2) { 

#content {
	margin-top: 14%;
}

a.link {
	margin-top: 150px;
}

}

/* iPad Landscape*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape)
and (-webkit-min-device-pixel-ratio: 2) { 

#content {
	width: 420px;
	height: auto;
	top: 50%;
	left: 50%;
	margin-left: -210px;
	margin-top: 40px;
}

a.link {
	margin-top: 80px;
}

}