/*
Theme Name: A Cool Million
Version: 1.0
*/

header, main, body, html {
	margin: 0;
	padding: 0;
	background: white;
	background: #4268b1
}

* {
	box-sizing: border-box;
}

body {
	font-family: Helvetica Neue,Helvetica,Arial,sans-serif; 
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: .1em;
	color: white;
	
}

html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}

#content {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
	text-align: center;
	font-weight: bold;
	padding: 20px 0;
	margin: 0;
}

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

/*a:hover {border-bottom: 1px solid black;}*/

main {
	width:100%;
	margin: 0 auto;
	padding: 0 20px;
}

#logo {
	max-width: 100%;
	display: block;
	width: 400px;
	height: auto;
	margin: 50px auto;
	filter: invert(1);
}

#menu-menu {
	margin: 0 auto;
	padding: 0;
	list-style: none;
	text-align: center;
}

#menu-menu li {
	font-weight: bold;
	display: inline-block;
	padding: 0 20px;
	text-transform: uppercase;
}

#home {
	/*
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);	
	*/
	padding: 0px 20px;
	max-width: 600px;
	width: 100%;
	margin: 0 auto;

	text-align: center;
}

#home h2 {
	text-transform: uppercase;
	margin:  0;
	padding: 0 0 10px 0;
	font-size: 16px;
	font-weight: bold;
}

#home p {margin: 0; padding: 0 0 10px 0;}

#home a {border-bottom: 1px solid white;}


#home #names p {display: inline-block; white-space: nowrap; padding: 0;}
#home #names p:after {
	content: ', ';
}

#home #names p:last-of-type:after {
	content: '';
}

h2 a {
	border: 1px solid white; padding: 5px 20px;
	display: inline-block;
	margin: 0 0 40px 0;
	border-radius: 20px;
}

h2 a:hover {
	color: #4268b1;
	background: white;

}

@media only screen and (max-width : 800px) {
	
	#logo {
	margin-top: 20px;
	padding: 0 20px;
}

}