body, html {
	height: 100%;
	margin: 0;
	padding:0;
}

h2 {
	font-family: "Krona One";
	margin-bottom: 8px;
}

p, ul, li {
	font-family: "Exo";
	font-weight: 400;
	letter-spacing: 0.5px;
}

p {
	margin: 0;
	padding: 0;
}

a, a:visited {
	color: #db2e24;
	text-decoration: none;
	transition: all 0.4s;
	border-bottom: 1px solid transparent;
}

a:hover, a:active, a:focus {
	color: #a4115a;
	border-bottom: 1px solid #a4115a;
}

#main {
	display: flex;
	min-height: 100vh;
}

#main:before {
	content: "";
	width:100%;
	background: linear-gradient( 90deg, #a3115b, #e84c11, #ef7803, #e2af12 );
	height: 8px;
	display: block;
	position: fixed;
	top:0;
}

#wrapper {
	width: 520px;
	margin: auto;
	padding-bottom: 48px;
	padding-top: 48px;
}

#logo {
	width: 100%;
}

.coordinates {
	display: flex;
	justify-content: space-between;
}

.slogan {
	margin-top: 32px;
	margin-bottom: 64px;
	text-align: center;
}

.coordinates .left,
.coordinates .right {
	width: 47%;
}

.coordinates .left {
	text-align: right;
}

.coordinates p {
	line-height: 1.7em;
}

@media (max-width: 600px) {

	#wrapper {
		width: 80%;
	}

	h2 {
		font-size: 1.3em;
	}

	p {
		font-size: 0.9em;
	}

}

@media (max-width: 600px) {

	.coordinates {
		flex-direction: column;
	}

	.coordinates .left,
	.coordinates .right {
		width: 100%;
		text-align: center;
	}

}