html, body, #main {
  height: 100%;
  width: 100%;
  margin: 0;
  font-family: Calibri, sans-serif;
}
body {
  display: flex;
  flex-direction: column;
}
header {
  display: flex;
  align-items: center;
  justify-content: center;
}
main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
h1 {
  color: #009245;
}
a {
  color: #497cbc;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline dashed;
}
.site-name-and-logo {
  display: flex;
  align-items: center;
}
a.site-name-and-logo:hover, a.site-name-and-logo:focus {
  text-decoration: none;
}
h1.site-name {
  font-size: 6rem;
  margin: 0 1.25rem 0 0;
  line-height: 4.5rem;
  border-top: 0.65rem dashed transparent;
  border-bottom: 0.65rem dashed transparent;
}
a.site-name-and-logo:hover h1.site-name {
  border-bottom-color: #009245;
}
.lightgreen {
  color: #39b54a;
}
.home-list {
  font-size: 2rem;
}
.debug {
  margin: 0 auto;
  max-width: 80%;
  background: #eeeeee;
  padding: 1rem;
  border: 1px solid #000000;
  border-radius: 1rem;
  text-wrap-mode: wrap;
}
