html {
	height: 100%;
	width: 100%;
}

body {
	height: 100%;
	width: 100%;
	background-color: #333333;
	margin: 0;
	padding: 0;
	overflow: hidden;
	height: 100%;
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: center;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border:none;
	outline: 0;
	padding: 0;
	margin: 0;
	-webkit-font-smoothing: subpixel-antialiased;
}

.header
{
	position: fixed;
	display: table;
	text-align: center;
	width: 100%;
	height: 100px;
	z-index: 999;
}

.header .logo {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 36px;
	width: 36px;
	margin: 12px;
	background-color: transparent;
	background-image: url("../images/logo.svg");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 1.0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.header .mail {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	height: 24px;
	width: 24px;
	margin: 12px;
	background-color: transparent;
	background-image: url("../images/mail.svg");
	background-position: right top;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 1.0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header .logo:hover,
.header .logo:active ,
.header .mail:hover,
.header .mail:active {
	opacity: 0.7 !important;
}

.foto {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: transparent;
	background-image: url("../images/background.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
}

.text_container {
	position: relative;
	display: table;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 1.5;
	color: white;
	text-shadow: 0 0 50px black;
	z-index: 1;
}

.text .avatar
{	
	left: auto;
	right: auto;
	height: 214px;
	width: 100%;
	background-color: transparent;
	background-image: url("../images/avatar.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.text_container .text {
	display: table-cell;
	vertical-align: middle;
	font-size: 20px;
	padding: 7%;
	font-size: 20px;
}

a {
    text-decoration: none;
}

a:link,
a:visited {
	opacity: 1.0;
    color: #36AD71;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

a:hover,
a:active {
    opacity: 0.7;
}