.navigation {
    display: flex; 
    background-color: #553975; 
    justify-content: center;
  } 
  .navigation li { 
    list-style-type: none; 
  } 
  .navigation a { 
    padding: 15px; 
    display: inline-block; 
    color: rgb(211, 210, 210); 
    text-decoration: none; 
  } 
  .navigation a:hover, #akt_tab { 
    background-color: #ffffffb7; 
  } 
  .button { 
    transition: 0.5s ease-in-out; 
  } 
  .button:hover { 
    background-color: rgba(119, 119, 119, 0.562); 
  } 
 .button{ opacity: 0.2;
transition: opacity 1s ease 0s;
}

img{
  opacity: 0.8;
  filter: grayscale(100%);
}
img:hover{
  opacity: 1;
  transition-duration: 0.5s;
  filter: grayscale(0%);
}
img{
  width: 400px;
  height: 400px;
}
.container{
  display: flex;
  justify-content: center;
}
h1{
  text-align: center;
}
h2{
  text-align: center;
}

    body {
        margin: 0;
        background-color: #062748;
        font-family: Arial, sans-serif;
        color: #ffffff;
        text-align: center;
        padding: 40px 20px;
    }
    h1 {
        margin-bottom: 20px;
        font-size: 3rem;
        font-weight: bold;
    }
    img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
        box-shadow: 0 4px 8px rgba(255, 255, 255, 0.667);
    }
    blockquote {
        font-style: italic;
        font-size: 1.5rem;
        color: #b7b7b7;
        max-width: 600px;
        margin: 0 auto;
    }
    .rosen{
      opacity: 1;
    transition-duration: 0.5s;
    filter: grayscale(0%);
    }
  
    .gallery img {
      width: 200px;
      margin: 10px;
      opacity: 0;
      animation: flyIn 1s forwards;
    }
    .gallery img:nth-child(1).png { animation-delay: 0.1s; }
    .gallery img:nth-child(2) { animation-delay: 0.3s; }
    .gallery img:nth-child(3) { animation-delay: 0.5s; }
    
    @keyframes flyIn {
      from { transform: translateX(-100px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }


  
  
  .card {
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .pulsing-logo {
    font-size: 60px;
    color: rgb#553975c1;
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
  }
  
 
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.7;
    }
  }
  
  @keyframes scrollImages {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .image-slider {
    overflow: hidden;
    width: 100%;
    background-color: rgb(149, 147, 147);
    padding: 10px 0;
  }
  
  .image-track {
    display: flex;
    gap: 20px;
    animation: scrollLoop 30s linear infinite;
  }
  
  .image-track img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .image-track img:hover {
    transform: scale(1.1);
  }
  
  @keyframes scrollLoop {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
 

  
  
    

