*, *::after, *::before {
  box-sizing: border-box;
  margin: 0;
  min-height: 0;
  min-width: 0;
  padding: 0;
}

:root {
  background-color: #ffffff;
  background-image: url(/pics/background.png);
  background-repeat: repeat;
  color: #383838;
  font-size: 18px;
}
@media screen and (prefers-color-scheme: dark) {
  :root {
    background-color: #202020;
    color: #dfdfdf;
  }
}

a, a:hover, a:visited {
  color: inherit;
  text-decoration: underline;
}

h1 {
  text-align: center;
  margin: 0.5em;
}

li {
  list-style: disc;
  margin: 0.5em;
  margin-left: 2em;
}

ul {
  margin-left: 1em;
}

ul.loglinks li {
  list-style: none;
  font-size: 20px;
  text-align: center;
  margin-left: 0.5em;
}

ul.svelist li {
  list-style: none;
  margin-left: 1em;
}

p {
  margin: 1em;
}

article {
  background-color: #ffffff;
  box-shadow: 5px 5px 5px 2px rgba(0, 0, 0, 0.3725490196);
  margin: 1em auto;
  max-width: 80ch;
  padding: 1px;
}
article h2 {
  border-bottom: #9446b3 2px solid;
  margin: 0.25em;
  max-width: 65%;
}
article h3 {
  margin-left: 0.5em;
}
@media screen and (prefers-color-scheme: dark) {
  article {
    background-color: rgba(0, 0, 0, 0.662745098);
  }
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100dvh;
}

details {
  margin: 1em;
}

div.buttons {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
div.buttons img {
  margin: 5px;
}

div.webring {
  margin: 1em;
}

footer {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5294117647);
  backdrop-filter: blur(2px);
  border-top: #9446b3 1px solid;
  display: flex;
  flex-flow: row wrap;
  grid-row: 3/4;
  justify-content: center;
  padding: 5px;
}
footer img {
  margin: 5px;
}
@media screen and (prefers-color-scheme: dark) {
  footer {
    background-color: rgba(0, 0, 0, 0.5294117647);
  }
}

img.sveico {
  float: left;
  height: 1em;
  margin: 5px;
}

img.svepic {
  margin: 1em;
  margin-bottom: 0;
}

h4 {
  margin-left: 1em;
}

main {
  grid-row: 2/3;
  overflow: auto;
}

nav {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5294117647);
  backdrop-filter: blur(2px);
  border-bottom: #9446b3 1px solid;
  display: flex;
  flex-flow: row wrap;
  grid-row: 1/2;
  justify-content: center;
}
nav a {
  margin: 0.25em;
  padding: 0.25em;
  text-align: center;
}
@media screen and (prefers-color-scheme: dark) {
  nav {
    background-color: rgba(0, 0, 0, 0.5294117647);
  }
}

summary span {
  text-decoration: underline;
}/*# sourceMappingURL=styles.css.map */