body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Orbitron', sans-serif;
  color: #00ffe7;
  text-align: left;
  padding: 20px;
  box-sizing: border-box;
}

h1 {
  margin-top: 20px;
  font-size: 2.5em;
  text-shadow: 0 0 10px #00ffe7;
}

code {
  font-family: 'Courier New', Courier, monospace;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1;
  text-align:left;
}

a  {
  color:#00ff00;
}

a:hover {
  color:white;
}

.content {
  max-width: 900px;
  margin-top: 40px;
  font-size: 1.2em;
  line-height: 1.8;
  background: rgba(0, 0, 0, 0.4);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px #00ffe7;
}

.article-preview {
  margin-bottom: 40px;
  text-align: left;
}

.article-preview h2 {
  text-align: left;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.article-preview p {
  text-align: left;
  font-size: 1.1em;
}

/* Buttons */
.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-start;
}

.custom-button {
  background: #111;
  border: 2px solid #00ffe7;
  border-radius: 8px;
  color: #00ffe7;
  text-decoration: none;
  padding: 6px 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85em;
  box-shadow: 0 0 8px #00ffe7;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.custom-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00ffe7;
}

/* HR zwischen Artikeln */
.styled-hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ffe7 50%, transparent);
  margin: 40px 0;
  opacity: 0.6;
}

/* Artikelbilder */
.article-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 0 10px #00ffe7;
}

/* Footer */
.footer {
  width: 100%;
  max-width: 900px;
  padding: 25px;
  background-color: transparent;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 0 20px #00ffe7;
}

.footer-content {
  text-align: center;
}

.footer-text {
  color: #00ffe7;
  font-size: 1.2em;
  font-family: 'Orbitron', sans-serif;
  display: block;
}

.footer-partner {
  font-size: 0.7em; /* Noch kleinere Schrift */
  color: #777;
  display: block;
  margin-top: 5px; /* Abstand zwischen Text und Link */
}

.footer-link {
  color: #00ffe7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #00b7a6;
}



/* Responsive Anpassungen */
@media (max-width: 768px) {
  h1 {
    font-size: 2em;
  }

  .content {
    font-size: 1.1em;
    padding: 20px;
    margin-top: 30px;
  }

  .custom-button {
    font-size: 0.9em;
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6em;
  }

  .content {
    font-size: 1em;
    padding: 15px;
    margin-top: 20px;
  }

  .custom-button {
    width: 100%;
    text-align: center;
    font-size: 1em;
  }
}
