
/* GENERAL */

*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
	background-image: url(images/background.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
	color: #000;
	font-family: "opensans-regular",sans-serif;
	font-size: 16px;
    font-weight: normal;
	height: 100%;
	line-height: 1.5em;
	margin: 0;
    overflow-x: hidden;
    padding: 0;
	text-align: left;
	width: 100%;
}

a {
	color: #fff;
    display: block;
	font-family: "opensans-regular",sans-serif;
	font-size: 16px;
    font-weight: normal;
    text-decoration: none;
}

a:focus, a:hover {
	color: #000;
	text-decoration: none;
}
	
p {
	margin: 0;   
}

.cover {
    margin: 0 auto;
    max-width: 600px;
    padding: 40px 15px;
    width: 100%;
}

/* FONT */

@font-face {
    font-family: 'opensans-regular';
    src: url('opensans/OpenSans-Regular-webfont.eot');
    src: url('opensans/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('opensans/OpenSans-Regular-webfont.woff') format('woff'),
         url('opensans/OpenSans-Regular-webfont.ttf') format('truetype'),
         url('opensans/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
