:root {
  --color: #FFF;
  --shadow-color: #0099de;
  --background-color: #000;
  --logo-height: 200px;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
}
body {
  font-family: sans-serif;
  color: var(--color);
  background-color: var(--background-color);
  background-image: url("/images/logo.png");
  background-position: center;
  background-repeat: no-repeat;
}
.centertext {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.centertext .content {
  padding-top: calc(var(--logo-height)*1.5);
  text-shadow: 0 0 3px var(--shadow-color);
}
.centertext h1 {
  font-weight: 500;
  margin-bottom: 0;
}
.centertext h2 {
  font-weight: 100;
  margin-top: 1rem;
}
