* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
/*body {
  position: relative;
  width: 100%;
  height: 100vh;


  align-items: center;
  background: rgb(29, 29, 29);
}*/

/*
.box{
width:100%;
height:450px;
Float:left
}
*/
         #slideshow {
            position: relative;
            max-width: 100%;
            aspect-ratio: 3 / 2; /* Verhältnis Breite zu Höhe */
            overflow: hidden;
        }

        #slideshow img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Bild beschneiden, aber nie verzerren */
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        #slideshow img.active {
            opacity: 1;
        }
