html {
  scroll-behavior: smooth;
}

#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: black;
}

body {
  background-color: #1f1f1f;
  display: flex;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

.webstimeTitle {
  color: antiquewhite;
  border-radius: 5px;
  border-width: 2px;
  border-color: antiquewhite;
  border-style: double;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding: 0.5rem 2rem;
}

.title {
  font-weight: bold;
  color: antiquewhite;
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #242424;
}

ul {
  color: #e1e1e1;
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
  font-size: 1rem;
  max-width: 700px;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

hr {
  width: 30%;
  border: 0;
  border-top: 1.5px dashed #676767;
  margin: 2rem 0;
}

p, a {
  color: #e1e1e1;
  font-size: 1rem;
  text-align: left;
}

p[align="center"], p.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
  margin: 0.2rem 0;
  border-radius: 8px;
}

a {
  text-decoration: none;
  margin-right: 0.7em;
  transition: color 0.2s;
}

a:hover {
  color: #00bfff;
}

code {
  background: #232333;
  color: #00bfff;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Fira Mono', 'Consolas', monospace;
  font-size: 0.95em;
}

footer {
  color: #f3f3f3;
  opacity: 90%
}


@media (max-width: 800px) {
  ul, .title, p, .webstimeTitle {
    max-width: 95vw;
    font-size: 0.97em;
  }
  body {
    padding: 0 1vw;
  }
}
