#root {
  padding: 3vmin;
  box-sizing: border-box;
  background-color: hsl(275, 55%, 10%);
}
#page-login div.login-form > div > div+div {
  margin-top: 1em;
}
button, input {
  font-size: 1em;
}
#page-home div.background {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#page-home div.foreground {
  z-index: 2;
  position: relative;
}
#page-home div.foreground > h1 {
  margin: 0;
  text-align: center;
}
#page-home div.foreground > div.menus {
  margin: 1em 0;
}
@media (width > 32em) {
  #page-home div.foreground > div.menus {
    display: flex;
    column-gap: 1em;
    justify-content: space-evenly;
  }
}
#page-home div.foreground > div.menus > div.menu > div > a {
  color: hsl(18, 85%, 55%);
  font-weight: bold;
  line-height: 1.5;
  text-decoration: none;
}
#page-home div.foreground > div.menus > div.menu > div > a:hover {
  text-decoration: underline;
}
#page-home div.foreground > div.menus > div.menu > div > a > span.icon {
  width: 1.5em;
  display: inline-block;
  font-size: 2em;
  vertical-align: middle;
}
#page-home div.foreground > h1 > svg {
  max-height: 50vh;
}
