* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	color: #ecf0f1;
	font-family: "Source Sans 3", sans-serif;
  background-color: #1b1d27;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.main {
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
  text-align: center;
}

.title {
  font-family: "Titillium Web", 'Gill Sans', sans-serif;
	font-size: 4rem;
  margin-bottom: .5rem;
	width: 100%;
  font-weight: 500;
}

.sub-title {
  font-family: "Titillium Web", 'Gill Sans', sans-serif;
  border-top: .1rem solid #fff;
  padding: 1rem 4rem;
  font-weight: 300;
  font-size: 1.5rem;
}

.inquiries {
  margin-top: 2rem;
  font-weight: 200;
  margin-bottom: 0.5rem;
}

.contact {
  font-weight: 600;
}

@media only screen and (max-width: 499px) { 
  .title {
    font-size: 3rem;
  }
  
  .sub-title {
    padding: 1rem 2rem;
    font-size: 1.2rem
  }  
}