@import url('https://fonts.googleapis.com/css2?family=Italianno&display=swap');


body {
  background-color: #0b1020; /* Mystisches Blau */
  background-image: url('https://schattenarchiv.neocities.org/a-0120.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  color: #e0e0e0; /* Blasses Nebelweiß */
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.1rem;
  margin: 0;
  padding: 0;
}

header {
  background-color: transparent;
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 1px solid #1f2937;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-family: 'Italianno', cursive;
  font-size: 5em;
  color: #a6b1e1;
  text-shadow: 1px 1px 3px #000;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.1rem;
  color: #bbbbbb;
  margin-top: 0.5rem;
}

nav {
  background-color: #1b1b24;
  padding: 0.5rem;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  display: inline;
  margin: 0 1rem;
}

nav a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #a6b1e1;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h2 {
  color: #a6b1e1;
  border-bottom: 1px solid #333;
  padding-bottom: 0.3rem;
}

.echo blockquote {
  margin-top: 3rem;
  font-style: italic;
  padding-left: 1rem;
  color: rgba(180, 180, 200, 0.75); /* sanftes Nebelgrau */
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(to right, rgba(255,255,255,0.02), rgba(0,0,0,0.05));
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

.echo span {
  display: block;
  margin-top: 0.5rem;
  text-align: right;
  font-weight: bold;
  color: rgba(180, 180, 200, 0.55);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.6);
}

footer {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-size: 0.9rem;
}
@keyframes breathHuman {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.92;
  }

  35% {
    transform: translateY(-3px) scale(1.018);
    opacity: 1;
  }

  45% {
    transform: translateY(-3.2px) scale(1.02);
    opacity: 1;
  }

  65% {
    transform: translateY(-2px) scale(1.015);
    opacity: 0.98;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 0.92;
  }
}

.fogquote {
  position: relative;
  padding: 2rem;
  background: rgba(20, 20, 30, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #cfd3e6;
  font-style: italic;
  font-size: 1.1rem;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(100, 100, 150, 0.3);
  filter: blur(0.1px);
  animation: breathHuman 9s ease-in-out infinite;
}

.fogquote::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, rgba(10,10,20,0.1), rgba(0,0,0,0.2) 60%, transparent 100%);
    filter: blur(60px);
    z-index: -1;
    animation: fogFloat 10s ease-in-out infinite;
}