@import url('css/font-awesome.min.css');

* {box-sizing: border-box;}
html { 
	background-color: #111;
	font-family: 'Poppins', sans-serif; 
	font-size: 19px; 
	line-height: 1.5; 
	-ms-text-size-adjust: 100%; 
	-webkit-text-size-adjust: 100%; 
	height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
	background-size: cover;
	background-repeat: no-repeat;
	margin: 0; 
	text-align: center; 
	color: white;
	display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
}

h1, h2 { color: white; margin-bottom: 0; }

a { color: white; text-decoration: none; }
a:hover { color: white; text-decoration: underline; }

.wrap {
	max-width: 900px;
  margin: 0 auto;
  padding: 80px 50px;
}
.logo {
  max-width: 400px;
  width: 100%;
  margin-bottom: 20px;
}
.underline {
	margin: 30px auto;
	height: 3px;
	width: 50px;
	background-color: #ec008c;
}
.tagline {
	font-weight: 500;
	font-size: 24px;
	margin-bottom: 20px;
}
.body-text {
	margin-bottom: 20px;
}
.social-intro {
	margin-left: 10px;
}
.social {
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.social-icon {
	width: 50px;
	height: 50px;
	border-radius: 25px;
	margin: 0 5px;
	background:  #ec008c;
	color: white;
	display: inline-block;
	font-size: 24px;
  padding-top: 13px;
}
.social-icon:hover {
	background: #dc007c;
}

.footer {
	font-size: 16px;
}
@media screen and (max-width: 600px) {
	body {
		display: block;
		font-size: 16px;
		padding: 0;
	}
	.social-intro {
		margin-left: 5px;
	}
	.social-icon {
		width: 40px;
		height: 40px;
		border-radius: 20px;
		font-size: 20px;
		padding-top: 11px;
		margin-left: 0;
		flex: 0 0 40px;
	}
	.wrap {
		padding: 40px 20px;
	}
	.tagline {
		font-size: 20px;
	}
	.logo {
		max-width: 220px;
	}
	.footer {
		font-size: 14px;
	}
}