@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
html {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.75em;
  --theme-color: #007FFF;
}
body {
    margin: 0;
}
.header, .footer {
  color: white;
  padding: 8px;
}
.header {
  background: var(--theme-color);
}
.footer {
  background: black;
}
.sitetitle {
  font-weight: 500;
}
.container {
  margin: 8px;
}
a:any-link {
  color: var(--theme-color);
  text-decoration: none;
}
a:any-link:hover {
  text-decoration: underline;
}
