* {
  box-sizing: border-box;
  margin:0;
  padding:0;
}
.box {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	text-align:center;
}
.logo {
	width:300px;
	display:block;
	vertical-align:middle;
	margin:0 auto;
	margin-bottom:30px;
}
h1 {
	display:block;
	color:#E84F54;
	font-family: "Hurme Geometric Sans 4";
	font-weight:500;
	font-size:70px;
	line-height:75px;
}
.spacer {
	height:3px;
	width:500px;
	background:#E84F54;
	margin:30px 0px 25px 0px;
}

p {
	color:#E84F54;
	font-weight:normal;
	font-size:30px;
	font-family: "Hurme Geometric Sans 4";
	line-height:32px;
}

.socials {
	text-align:center;
	margin-top:30px;
}

.socials a {
	display:inline-block;
	width:max-content;
}
.socials a:hover img {
	opacity:.6;
}
.socials a:first-child {
	margin-right:10px;
}
.socials a img {
	display:block;
	vertical-align:middle;
	width:30px;
	transition:.2s all;
}

@media (max-width:700px) {
	.box {
		width:90%;
		text-align:center;
	}
	.logo {
		width:200px;
	}
	h1 {
		font-size:30px;
		line-height:35px;
	}
	.spacer {
		width:85%;
		margin:0 auto;
		margin-top:30px;margin-bottom:25px;
	}
	p {
		font-size:22px;
		line-height:25px;
	}
	.socials a img {
		width:25px;
	}
}