/*
	CSS for alvarosanchez.com
	Created by: Alvaro Sanchez
*/

/* RESET CSS */

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%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
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;
}

/* END RESET CSS */

/****************/


/* HTML Tags */
html, body{ height: 100%; }

body{
	font-family: 'Roboto', arial, serif;
	background-color: #E94835;
	box-shadow: inset 0 0 30px rgba(0, 0, 0, .7);
	-webkit-box-shadow: inset 0 0 30px rgba(0, 0, 0, .7);
	-moz-box-shadow: inset 0 0 30px rgba(0, 0, 0, .7);
}


h1, h2{
	color: rgba(255,255,255, 0.9);
	font-size: 42px;
	line-height: 42px;
	margin-bottom: 24px;
}

h2{
	font-size: 30px;
	line-height: 42px;
	margin-bottom: 18px;
}

a:link, a:visited{
	color: #35E98D;
	border-bottom: 1px dashed #35E98D;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
}

a:hover{
	color: #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
}

/*eo HTML Tags */

/****************/

/* classes */

.float-left{ float: left; }

/* eo classes */

/****************/

/* Main Layout */

#particles{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom:0;
}

.main-wrapper{
	width: 100%;
	height:100%;
}

.center-box{
	margin: 0 auto;
	width:95%;
	display: block;
	top:35%;
	text-align: center;
	position: relative;
}

.greeting{
	padding-bottom: 12px;
}

.main-links{
	margin-bottom: 24px;
	text-align: center;
}

.main-links ul{
	display: block;
}

.main-links ul li{
	list-style-type: none;
	display: inline;
	padding: 5px 10px;
	font-size: 140%;
}


/* eo Main Layout */

/****************/
