:root {
	--black: #000;
	--light-gray: #DDD;
	--white: #FFF;
	--neon-blue: #4EE4D9;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
	padding: 0;
	margin: 0;
	background-color: #9C017C;
}

a,
a:hover,
a:focus,
a:active,
a:visited {
	color: var(--neon-blue);
	text-decoration: none;
}

.container {
	display: flex;
	width: 100vw;
	height: 100vh;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.logo {
	margin-top: 5%
}
.logo img {
	display: block;
	width: 600px;
	height: auto;
	max-width: 90%;
	margin: 0 auto;
}
.logo h1 {
	font-size: 75px;
	line-height: 1em;
	text-align: center;
	text-shadow: 2px 1px 1px rgba(0,0,0,0.5);
}
.logo .motto {
	margin-top: 50px;
	font-size: 35px;
	line-height: 1em;
	text-align: center;
	text-shadow: 2px 1px 1px rgba(0,0,0,0.5);
}
