html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    margin: 0;
    padding: 0;
}

body{
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    color: #3e3e3e;    
    background: #f5f7fa
}

main{
	background: url('../assets/images/logo2.png') no-repeat;
    background-position: center 70px;
    background-size: 60%;
    min-width: 700px;	
    min-height: 400px;
}

section{
	width: 300px;
	margin: 0 auto;
	text-align: center;
	padding-top: 250px;
}

section > a{
	display: block;
	margin-left: -10px;
	color: #333;
	text-decoration: none;
	border-top: 1px solid transparent;	
	border-bottom: 1px solid transparent;
	transition: all 0.2s;
	font-size: 1.2rem;
}

section > a:hover{
	border-bottom: 1px solid #aaa;
	border-top: 1px solid #aaa;	
}