/* css makes me wish I was illiterate */
@font-face {
	font-family: "Ultra-Regular";
	src: url('Ultra-Regular.ttf');
}
body {
  background-image: url("bg.png");
}
.logo {
	display: flex;
	justify-content: center;
}
.navigation {
	text-align: center;
	background-color: #f70000;
	padding: inherit;
}
.navigation ul {
	display:flex;
	justify-content:space-around;
    outline: red;
}
.navigation a {
	color: white;
}
.navigation a:hover {
	color: yellow;
}
ul {
	padding: 0px 5px;
	margin-bottom: 0px;
}
.content {
	display: flow-root;
	text-align: center;
	background-color: white;
}
.div1  {
	display: flex;
	justify-content: center;
}

 
.big { font-size: 1.3em; }
