:root {
	--hockey-blue: #0078c6
}
body{
	font-family: "Red Hat Display", sans-serif;
}
.outer {
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("/img/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  
  background-attachment: fixed;
}

.middle {
  display: table-cell;
  vertical-align: middle;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  padding:10px 0px;
  background-color: rgba(255,255,255,0.7);
}

.h1 {
	font-size:40px;
	color: var(--hockey-blue);
}
.h2 {
	font-size:20px;
}
.textcenter{
	text-align:center;
	color: var(--hockey-blue);
}
a {
	color:var(--hockey-blue);
}
a:visited {
	color: var(--hockey-blue);
}