@charset "UTF-8";
/* CSS Document */
body{
	background-color: #eee;
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	letter-spacing: 0px;
	font-size: 18px;
	line-height: 1.2;
	color: #333;
	font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    min-width: 375px;
    min-height: 100vh;
    background: url(../images/background.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
a:link{
	color: #333;
	text-decoration: none;
}
a:visited{
	color: #333;
	text-decoration: none;
}
a:hover, a:active{
	color: #333;
	text-decoration: none;
}
div, img, ul {
    vertical-align: top;
}
.header{
	width: 80%;
	text-align: center;
	padding: 20px 10% 0;
	margin-bottom: 60px;
}
	.header img{
		max-width: 500px;
		width: 100%;
	}
.subtitle{
	width: 100%;
	text-align: center;
	margin: 60px 0 10px;
	font-weight: 400;
	font-size: 22px;
}
.button_container{
	width: 94%;
	margin: 10px 3%;
	text-align: center;
	position: relative;
}
	.button_container .button{
		width: 20%;
		margin: 1% 2%;
		max-width: 120px;
		display: inline-block;
		cursor: pointer;
	}
	.button .button_icon{
		width: 100%;
		padding-bottom: 10px;
	}
		.button .button_icon img{
			width: 100%;

		}
		.button:hover .button_icon img{
			filter:drop-shadow(0px 1px 0px #999);
		}
		.button:hover {
			font-weight: 400;
		}
.footer{
	width: 100%;
	text-align: center;
	margin: 50px 0;
	font-size: 9px;
}
.notice{
	width: 80%;
	text-align: center;
	margin: 50px 10%;
	font-size: 14px;
}
@media screen and (max-width: 620px) {
	.button_container {
	    width: 80%;
	    margin: 10px 10%;
	}
	.button_container .button{
		width: 35%;
	    margin: 2% 5%;
	    max-width: 120px;
	}
}