:root {
  --medi-background: rgba(0, 0, 0, 0.4);
  --medi-glow: drop-shadow(0 0 6px rgba(0, 126, 255, 0.87));
  --medi-portaltext: rgb(16, 140, 126);
  --medi-header: Sylvar, cursive;
  --medi-headertext: goldenrod;
  --medi-frameimage: url('/Buch_Luma1/rahmen-gold.png') 250 round;
  --medi-backgroundimg: url('/images/sternenvorhang.png');
} 

@keyframes moveStars {
  from { background-position: 0 0; }
  to { background-position: 0 1000px; }
}  

  
.meditation-header {
  font-family: var(--medi-header);
  font-weight: 400;
  color: var(--medi-headertext);
  font-size: 1.6rem;
  text-align: center;
  margin-top: 2rem;
}
.meditation-image {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
      flex-wrap: wrap;
      filter: var(--luma-glow);
    }
.meditation-image img {
      max-width: 400px;
      height: auto;
      border-radius: 8px;
    }
.meditation-frame {

    background: var(--medi-backgroundimg);
    background-color: var(--medi-background); /* Dunkler Hintergrund */
    background-position: top;
    box-shadow: none;
    padding: 0.5rem;
    margin-bottom: 4rem;
  
  }
.meditation-text {
  font-family: var(--luma-text);
  font-weight: 400; /*hier umschalten 400 oder 700*/
  font-size: 2rem;
  line-height: 2rem;
  max-width: 550px;
  margin: auto;
  padding: auto;
  color: var(--light-text);
  text-align: center;
  margin-bottom: 18rem;
}    

  .meditation-button {
  display: inline-block;
  width: 160px;
  padding: 1rem;
  filter: var(--medi-glow);   
  animation: rotatePortal 10s linear infinite; 
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}
  .meditation-button img:hover{
  transform: scale(1.2);
}
  .meditation-button img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: none;
}
.portal-description {
  font-family: var(--medi-header);
  font-weight: 400;
  color: var(--medi-portaltext);
  filter: var(--medi-glow);
  font-size: 1.2rem;
  text-align: center;
  animation: flickerGlow 2s ease-in-out infinite;
}

.music-player-container {
  text-align: center;
  margin: 1rem;
}


#playButton {
  background: none;
  border: none;
  font-size: 1.6rem;
  font-family: Admiral;
  color: var(--medi-glow);
  cursor: pointer;
  filter: var(--medi-glow);
  animation: flickerGlow 2s ease-in-out infinite;
}

#playButton:hover {
  transform: scale(1.2);
}

/* Smartphone und kl Tablets */
@media (max-width: 700px) {  
  
  .meditation-header {
    font-size: 1.1rem;
    line-height: 1.1rem;
    margin-top: 0;
  }
  
  #playButton {
  font-size: 1rem;
  } 
  
 .meditation-image img {
      max-width: 100%;
      margin: 1rem;
  }
  .meditation-frame {
    background: none;
    border: 30px solid transparent;
    border-image: var(--medi-frameimage);
    background-color: var(--medi-background); /* Dunkler Hintergrund */
    box-shadow: none;
    padding: 0.5rem;
  }
  .meditation-text {
    font-size: 1.5rem;
    line-height: 1.3rem;
    margin-bottom: 2rem;
  }

  }
  
/* Tablets */
@media (min-width: 481px) and (max-width: 899px) {  }
  
/* Desktop */  
@media (min-width: 900px) {  }  


