/* 90s Grundlook */
body {
  background-color: #000000;
  color: #ffffff;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

/* Container – 90s Standardbreite, aber flexibel */
#container {
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px;
}

/* Überschriften */
h1, h2, h3 {
  font-weight: bold;
  letter-spacing: 1px;
  margin: 20px 0 10px;
}

h1 {
  font-size: 24px;
  border-bottom: 2px solid #ffffff;
}

h2 {
  font-size: 18px;
  border-bottom: 1px solid #ffffff;
}

h3 {
  font-size: 16px;
}

/* Links */
a {
  color: #00ffff;
  text-decoration: underline;
}

a:hover {
  color: #ff00ff;
}

/* Tabellen */
table {
  border: 1px solid #ffffff;
  border-collapse: collapse;
  width: 100%;
  margin: 15px 0;
}

td, th {
  border: 1px solid #ffffff;
  padding: 5px;
}

/* Windows‑98‑Buttons */
button, input[type="submit"] {
  background-color: #c0c0c0;
  border: 2px solid #ffffff;
  border-right-color: #808080;
  border-bottom-color: #808080;
  padding: 4px 10px;
  font-family: inherit;
  cursor: pointer;
}

button:active,
input[type="submit"]:active {
  border: 2px solid #808080;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Horizontale Linie */
hr {
  border: none;
  border-top: 1px solid #ffffff;
  margin: 20px 0;
}

/* Listen */
ul {
  list-style-type: square;
  padding-left: 20px;
}

ol {
  padding-left: 20px;
}

/* Bilder */
img {
  max-width: 100%;
  border: 0;
}

/* Mobile Anpassungen */
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 16px;
  }

  #container {
    padding: 8px;
  }

  table, td, th {
    font-size: 13px;
  }
}
