html {
    font-family: Verdana, Arial, sans-serif;
    background-color: rgb(177, 153, 108);
    text-align: center;
    font-size: 1rem;
}

#kopfbereich, .h3 {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

#fussbereich, .beginn, #kopfbereich, .ende {
    color: yellow;
}

.Test {
  display: flex;
  gap: 1vw;
}

.inhalt1 {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.Bild {
  flex: 1;
  height: 35vh;
}

.inhaltParagraph {
  flex: 3;
}

.links {
  border: 1px solid #ff6b81;
  background: #ffe3e9;
  color: #c0392b;
  animation: slideIn 0.5s ease-in-out;
}

.rechts {
  background-color: rgb(176, 176, 238);
  border: 1px solid blue;
  color: rgb(0, 0, 255);
  animation: slideIn 0.5s ease-in-out;
}

.links, .rechts {
  padding: 1.2rem;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);   /* Leichter Schatten */
  transition: all 0.25s ease;
}

.links:hover {
  background: #ffd6df;
}

.rechts:hover {
  background: #a2c1ff;
}

.links:hover, .rechts:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.hintergrund-container {
    background-image: url('Pokemon_unscharf.jpg'); /* Hintergrundbild */
    background-size: 100%; /* Passt die Größe an */
    width: 100%;
    background-repeat: no-repeat;
    height: 500px; /* Höhe festlegen */
    display: flex;
    justify-content: center; /* Zentriert Vordergrund horizontal */
    align-items: center;
}

.vordergrund-bild {
    max-width: 50%;
    height: 72%;
    box-shadow: 0 6px 8px rgba(0,0,0,0.5);  /* Optional: Rahmen oder Schatten hinzufügen */
    border: 1px solid yellow;
}

.caption-links {
  float: left;
}

.caption-rechts {
  float: right;
}

.info {
    border: 1px solid yellow;
  display: flex;
}


.caption-links, .caption-rechts {
  padding: .2rem;
  border-radius: 12px;
  border: 1px solid rgb(77, 77, 77);
  background: rgb(181, 215, 226);
  background-color: rgb(129, 129, 129);
}

.caption-links:hover, .caption-rechts:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  background: #ffd6df;
}

@media screen and (max-width: 1080px) {
    
    .Test {
        display: block;
    }

}