/* Verus - Coming Soon
-------------------------------------------------------------- */

/***************** GENERAL ***********************/
* { 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body, html {
	height: 100%;
	margin: 0;
	padding: 0;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
}

/**************** FONTS **************************/
body, div, span, p, h1, h2, h3, h4, h5, h6 {
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
}

h1, h2, .link {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

a {
    color: #559999;
}

a:hover {
    color: #fff;
}

b, strong {
    font-weight: 600;
}

/***************** STRUCTURE *********************/
html {
    background: url(../images/bkgd.gif) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
	padding: 60px 60px 30px 60px;
	width: 100%;
}

/***************** HOME ************************/
.logo {
    padding-bottom: 60px;
    padding-top: 60px;
    text-align: center;
}

.logo img {
    height: auto;
    max-width: 100%;
}

.link {
    padding-top: 60px;
    padding-bottom: 120px;
}

.who {
    text-align: justify;
}

/***************** MEDIA QUERIES *****************/
@media screen and (max-width:950px) {
    .logo {
        padding-top: 0;
    }
    
    .link {
        padding-bottom: 60px;
    }
}

@media screen and (max-width:480px) {
    
    .container {
        padding: 60px 30px 30px 30px;
    }
}