body, html {
	margin: 0;
	top: 0;
	left: 0;
	font-family: 'Times New Roman', Serif;
}

#container {
	height: 100vh;
	width: 100vw;
	display: flex;
	flex-wrap: wrap;
}
#container-background {
    height: 100%;
    width: 100%;
    position: absolute;
    background-image: url(images/port.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
    filter: grayscale(1);
    opacity: 0.3;
}
#logo-wrapper {
	margin:auto;
	margin-top: 10vh;
	position: relative;
}
#logo-wrapper div {
	text-align: center;
	color: #666666;
}
#logo-text-wrapper {
	font-size: 120px;
	height: 185px;
}
#red-i {
	color: #cd0001;
	font-size: 1.5em;
	vertical-align: -17px;
    margin: 0 -27px 0 -25px;
	text-shadow: 0px 2px 0px #560000;
}
.tagline-text {
    letter-spacing: 1.6em;
    margin: 0 -10px 0 7px;
    text-align: justify;
	font-size: 11px;
}
.tagline-text:after {
    content: "";
    display: inline-block;
    width: 100%;
}
#coming-soon {
	width: 100%;
    height: 100%;
    text-align: center;
    position: absolute;
    margin: auto;
    display: flex;
}
#coming-soon span {
	margin: auto;
    color: #666666;
    padding: 1em 2em;
    border-left: 1px solid;
    border-right: 1px solid;
}


/* RESPONSIVE STYLES */

@media (max-width: 640px) {
	#logo-wrapper {
		margin-top: 18vh;
	}
	#logo-text-wrapper {
		font-size: 70px;
		height: auto;
	}
	#red-i {
		vertical-align: -12px;
		text-shadow: 0px 1px 0px #560000;
		margin: 0 -22px 0 -20px;
		line-height: 105px;
	}
	.tagline-text {
		font-size: .6em;
		letter-spacing: .8em;
		margin-right: -5px;
	}
}

@media (max-width: 680px) and (orientation: landscape) {
	#logo-text-wrapper {
		font-size: 90px;
		height: auto;
	}
	#red-i {
		vertical-align: -12px;
		text-shadow: 0px 1px 0px #560000;
		margin: 0 -22px 0 -20px;
		line-height: 135px;
	}
	.tagline-text {
		font-size: .6em;
		letter-spacing: 1.3em;
		margin-right: -5px;
	}
	#coming-soon span {
		margin-bottom: 15vh;
	    font-size: 0.9em;
	}
}