html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #101C28;
  color: #E8F1F8;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

header h1 {
  margin: auto;
  align-self: center;
}

.logo { 
  width: 100%;
  max-width: 300px 
}

article {
  display: block;
  margin: 0 auto;
  width: 50%;
}

.imprint {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px;
  font-size: 10pt;
  color: #101C28;
  background-color: #E8F1F8;
  border: 10px solid #ADC4D6;
}

.imprint h2 {
  margin-bottom: 0;
}

footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

footer a {
  font-size: 8pt;
}

a {
  font-weight: bold;
  color: #F80652;
  text-decoration: none;
  
}

a:hover {
  text-decoration: underline;
}

