/* CSS Reset */

html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: 300;
  font-family: 'Ubuntu', sans-serif;
  letter-spacing: 2px;
}

ol, ul {
  list-style: none;
}

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

a {
	text-decoration: none;
	color: #ffffff;
}


/* Style */

.main {
	height: 100vh;
	background-image: url('coming-soon.jpg');
	background-position: center;
	background-size: cover;
}

.dis-table {
	display: table;
	width: 100%;
	height: 80%;
}

.content {
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
	display: table-cell;
	vertical-align: middle;
}

h2 {
    font-weight: 300;
	font-size: 40px;
	line-height: 50px;
	margin-bottom: 10px;
}

h1 {
	font-size: 45px;
	font-weight: 700;
}

.footer {
	position: absolute;
	bottom: 50px;
	width: 100%;
	text-align: center;
	color: #ffffff;
}

.footer img {
	margin-bottom: 30px;
}

.tagline {
	margin-bottom: 10px;
	letter-spacing: 0;
}

.contact a { 
    margin-right: 10px;
    letter-spacing: 0;
}


/* Responsive */

@media only screen and (max-width: 768px) {
	h2 {
		font-size: 80px;
		line-height: 100px;
	}

	h1 {
		font-size: 90px;
		font-weight: 110px;
	}

	.footer {
		bottom: 100px;
	}
}