@font-face {
    font-family: 'lato';
    src: url('lato-regular.woff2?#iefix') format('woff2'),
         url('lato-regular.woff') format('woff'),
    font-weight: normal;
    font-style: normal;
}
body {
	background-color: #082243;
	color: white;
	font-family: 'lato';
	font-size: 20px;
	display: flex;
	flex-direction: column;
}
p {
	display: flex;
	justify-content: center;
	margin: 0 20px;
	text-align: center;
}
p.bg {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: .1;
}
p.symbol {
	margin: 20px;
	display: flex;
	justify-content: center;
	align-items: items;
}
p.symbol > img {
	max-width: 800px;
}
ul.max-width {
	max-width: 500px;
	margin: auto;
}
.light-blue {
	color: #199ad6;
}
.large {
	font-size: 24px;
}
.small {
	font-size: 16px;
}
.very-small {
	font-size: 12px;
}
.bold {
	font-weight: bold;
}
.uppercase {
	text-transform: uppercase;
}
.gap-top {
	margin-top: 20px;
}
.gap-bottom {
	margin-bottom: 20px;
}

@media only screen and (max-width: 720px) {
  p.bg, p.symbol {
    max-width: 100%;
  }
  p.bg img, p.symbol img {
  	width: 100%;
  }
}