/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,body{
	height:100%;
}

body {
	background-color: black;
	font-family: Arial Narrow, sans-serif;
  	text-align: center;
	display: flex;
	flex-direction: column;
}

.top-phrase {
	margin-top: 10px;
	font-size: 22px;
	font-weight: 900;
	color: white;
	text-shadow: -2px white;
}

header img {
	margin-top: 40px;
	margin-bottom: 40px;
	width: 100%;
	display: block; /* removes little bottom gap */
	height: auto; /* keeps image aspect ratio */
}

main{
	margin-top: auto;
}

main .content {
	justify-content: center;
	font-size: 20px;
	font-weight: 900;
	color: white;
	display: flex;
	flex-wrap: wrap;
	align-items: center; /* text & logos */
	text-shadow: 0px 0.5px white, 0px 0.5px white; 
}

.logo1{
	height: 80px;
	width: auto;
	margin: 10px;
}

.logo2{
	height: 80px;
	width: auto;
	margin: 10px;
	filter: invert(1);
}
