*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: sans-serif;
}
body{
  background-color: #f0f0f0;
  background-image: url(/thumb/LandingP/Web_Hintergrund_naked.jpg);
}
.card-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 100px;
}
.card{
  width: 425px;
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
  margin: 20px;
}
.card img{
width: 100%;
height: auto;
}
.card-content{
  padding: 16px;
}
.card-content h3{
  font-size: 28px;
  margin-bottom: 8px;
}
.card-content p{
  color: #666;
  font-size: 15px;
  line-height: 1.3;
}
.card-content .button{
  display: inline-block;
  padding: 8px 16px;
  background-color: #333;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 16px;
  color: #fff;
}
header{
  width: 1140px;
  max-width: 90%;
  margin: auto;
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
  
}
a{
  text-decoration: none;
  color: white;

}
nav{
  display: flex;
  flex-wrap: wrap;
justify-content: space-between;
  align-items: center;
  margin-top: 20px;
 
  padding: 0 0 0px 30px;
  font-size: 1.1em;
}
nav a{
margin: 0px 20px 20px 0px;
}
nav a:hover{
background-color: rgb(133, 129, 242);

}
header a{
  margin-right: 40px;
}
@import url('https://fonts.cdnfonts.com/css/ica-rubrik-black');
@import url('https://fonts.cdnfonts.com/css/poppins');



.banner{
  width: 100%;
  height: 30vh;
  text-align: center;
  overflow: hidden;
  position: relative;
  
}
.banner .slider{
  position: absolute;
  width: 120px;
  height: 2130px;
  top: 0%;
  left: calc(50% - 70px);
  transform-style: preserve-3d;
  transform: perspective(1000px);
  animation: autoRun 15s linear infinite;
  z-index: 2;
  
}
@keyframes autoRun{
  from{
    transform: perspective(1000px) rotateX(-0deg) rotateY(0deg);
  }to{
    transform: perspective(1000px) rotateX(-0deg) rotateY(360deg);
  }
}
.banner .slider .item{
  position:absolute;
  inset: 0 0 0 0;
  transform: 
  rotateY(360drg);
   transition: 500ms;
   margin-bottom: 70px;
}
.banner .slider .item img{
  width: 100%;
  height: 50%;
  object-fit: contain;
  

} 
.banner .content{
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform:  translateX(-50%);
  width: min(1400px, 100vw);
  height: max-content;
  padding-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  color: white;
}
.banner .content h1{
  font-family: Poppins;
  font-size: 6em;
  line-height: 1em;
  color: #252838;
  position: relative;
}
.banner .content h1::after{
  position: absolute;
  inset: 0 0 0 0;
  content: attr(data-content);
  z-index: 2;
  -webkit-text-stroke: 2px #d2d2d2;
  color: transparent;
}
.banner .content .author{
  font-family: Poppins;
  text-align: right;
  max-width: 1200px;
}
.banner .content h2{
  font-size: 3em;
}
.banner .content .model{
  background-image: url("");
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 75vh;
  position: absolute;
  bottom: 50px;
  left: 0;
  background-size: auto 130%;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 1;
}
