/* === Logo === */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 120px;
    z-index: 1000;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* === Grundlayout und Farben === */
body {
    background-image: url('../img/background-wanderer.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    color: rgba(92, 92, 105, 0.274);
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    padding-bottom: 60px; /* Platz für Footer */
}

.hinweis-banner {
  background: #f2f2f2;
  color: #444;
  padding: 10px;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  font-size: 1em;
}


/* === Überschriften === */
h1 {
    font-size: 3em;
    font-weight: 600;   /* halb-fett */
    color: rgba(4, 4, 160, 1);
    text-align: center;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(240,240,240,0.40); /* leicht transparent */
    color: #333;
    text-align: center;
    font-size: 19px;          /* feste Größe in Pixeln */
    padding: 15px 10px;
    border-top: 2px solid rgba(0,0,0,0.3);
  }
  
  footer a {
    color: #0066cc;
    text-decoration: none;
    margin: 0 8px;
  }
  
  footer a:hover {
    text-decoration: underline;
    color: #004499;
  }
  
  