body {
	padding: 50px;
	margin: 0;
	/*background-image: url(ecw_bg.svg);*/
	/*background-repeat: no-repeat;*/
	font-family: Arial, Helvetica, sans-serif;
	height: 80vh;
	/*background-position: -200px 8vh;*/
	position: relative;
	font-size: 16px;
}
p {
	font-size: 1.3em;
}
a {
	text-decoration: none;
	color: #000;
}
a:hover {
	color: #353535;
}
.center {
	margin: 0 auto;
}
.maintenance {
	margin: 25px auto;
	text-align: center;
}
.main {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cogs {
	height: 100px;
	width: 200px;
	margin: 0 auto;
	position: relative;
}
.next-to {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.content .next-to .fa {
	font-size: 20px;
	margin-right: 15px;
}
.content .next-to .large {
	font-size: 30px;
}
.socials {
	display: flex;
	flex-direction: row;
	position: fixed;
	bottom: 30px;
	right: 50px;
}

.socials a {
	margin: 5px;
}

.socials a .fa {
	height: 20px;
	width: 20px;
}

.s-box {
	width: 30px;
	height: 25px;
	padding: 5px;
	position: relative;
	cursor: pointer;
	transition: 300ms ease;
}

.icon,
.name {
	text-align: center;
	color: #fff;
	margin-top: 0;
	margin-bottom: 0;
}

.s-box .icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	transition: 250ms ease;
}

.s-box:hover {
	width: 100px;
}

.s-box:hover:hover .icon {
	opacity: 0;
	top: 30%;
}

.s-box:hover:hover .name {
	opacity: 1;
	top: 50%;
}

.s-box .name {
	position: absolute;
	left: 50%;
	top: 80%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: 250ms ease;
	width: max-content;
}

.extra-btn {
	cursor: pointer;
	text-align: center;
	padding: 0 15px;
	border: 2px solid #000;
	width: max-content;
	margin: 10px auto;
	transition: background-color 1s ease;
}

.extra-btn:hover {
	background-color: #000;
	color: #fff;
}

.extra-btn:hover a {
	color: #fff;
}

.flex-container {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
}

.creds {
	font-size: 12px;
	text-align: center;
	color: #353535;
	position: absolute;
	bottom: -40px;
	right: 50%;
	transform: translate(50%, 0);
}

.m-0 {
	text-align: center;
}

#gear1,
#gear2,
#gear3 {
	color: #888;
	display: block;
	position: absolute;
}

#gear1 {
	top: 45px;
}

#gear2 {
	left: 60px;
}

#gear3 {
	top: 45px;
	left: 120px;
}

.spin {
	-webkit-animation: spin 4s linear infinite;
	-moz-animation: spin 4s linear infinite;
	animation: spin 4s linear infinite;
}

.spin-back {
	-webkit-animation: spin-back 4s linear infinite;
	-moz-animation: spin-back 4s linear infinite;
	animation: spin-back 4s linear infinite;
}

.form-container {
	display: none;
	position: fixed;
	margin: auto;
	bottom: 0;
	right: 0;
	left: 0;
	top: 20px;
	padding: 20px;
	max-width: 350px;
	background: #fff;
	height: max-content;
	box-shadow: 2px 3px 10px #000;
	z-index: 100;
}

.form-container form {
	display: flex;
	flex-direction: column;
}

.form-container form input,
.form-container form textarea {
	margin-bottom: 15px;
	border: 0 solid transparent;
	padding: 10px 5px 5px 5px;
	background: #efefef;
}

.form-container form input:focus,
.form-container form textarea:focus {
	outline: none;
}

.form-container form input[type="submit"] {
	border: none;
	padding: 10px;
	font-weight: bold;
	color: #000;
	background: #ccc;
	cursor: pointer;
}

.form-container form input[type="submit"]:hover {
	background: #000;
	color: #fff;
}

.hidden {
	display: none;
}

#close {
	position: relative;
	left: 94%;
	margin-bottom: 15px;
	display: inline-block;
	padding: 2px 7px;
	background: #ccc;
	cursor: pointer;
}

#close:hover {
	background: #000;
	color: #fff;
}

.op-bg {
	display: none;
	background: #000;
	opacity: .3;
	width: 100%;
	position: fixed;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
}

.success {
	display: none;
}

@-moz-keyframes spin {
	100% {
		-moz-transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes spin-back {
	100% {
		-moz-transform: rotate(-360deg);
	}
}

@-webkit-keyframes spin-back {
	100% {
		-webkit-transform: rotate(-360deg);
	}
}

@keyframes spin-back {
	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@media (max-width: 600px) {
	body {
		padding: 15px;
		margin-bottom: 2em;
		height: max-content;
	}

	body p {
		margin: 20px;
	}

	.center img {
		max-width: 300px;
		width: 100%;
	}

	.m-0 {
		margin: 0;
	}

	.creds {
		bottom: -100px;
	}
}

@media (max-height: 730px) {
	body {
		margin-bottom: 115px;
		height: max-content;
	}

	.socials {
		position: absolute;
		bottom: -40px;
		right: 50%;
		transform: translate(50%, 0);
	}

	.creds {
		bottom: -100px;
	}
}