@charset "UTF-8";
/* CSS Document */

body {
	margin: 0;
}

div#container {
    display: block;
    width: 100vw;
    max-width: 1300px;
    text-align: center;
    margin: 0 auto;
}

div#logo {
    width: 100%;
    display: block;
    position: relative;
    margin-top: calc(100vh * 0.29);
}

div#logo img {
    width: 80%;
}

div#tagline {
    margin-top: calc(100vh * 0.03);
}

div#tagline img {
    width: 45%;
}

div#coming-soon {
    margin-top: calc(100vh * 0.15);
}

div#coming-soon img {
    width: 45%;
}

div#email {
    margin-top: calc(100vh * 0.02);
}

div#email img {
    width: 30%;
}

div#email a {
    opacity:1.0;
	transition: .2s ease-out;
}

div#email a:hover {
	opacity:0.5;
	transition: .2s ease-out;
}


@media all and (max-width: 600px) {
	
	div#tagline img, div#coming-soon img {
		width:65% !important;
	}
	
	div#email img {
		width: 45% !important;
	}
	
}