body{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #2c5885;
}

.center{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.mainLogo{
    margin-top: 10px;
    width: 350px;
}

.slideshow{
    width: 80vw;
    height: 60vw;
    max-width: 700px;
    max-height: 450px;
    border-radius: 24px;
    background-image: url("SlideShowImages/s1.jpg");
    background-position: 100% 100%;
    animation: wechsel 80s infinite;
    transition: 1s;
    background-size: cover;
    background-position: center;
    will-change: auto;
}

.hLimit{
    margin-top: 40px;
    max-width: 1000px;
    width: 90%;
}

.contentLable{
    font-size: 28px;
    font-weight: 600;
}

.contentText{
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer{
    margin-top: 100px;
    width: 100wv;
    background-color: #2c5885;
    padding-bottom: 100px;
}

.mainHeadline{
    text-align: center;
    font-size: 36px;
}

.geraetEintrag{
    margin-top: 100px;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 100%;
}

.geraetBild{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.geraetName{
    font-size: 24px;
    font-weight: 600;
    text-align: left;
}

.geraetEigenschaft{
    margin-top: 20px;
    font-size: 18px;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 10px;
    padding-bottom: 20px;
    width: 100%;
    max-width: 600px;
}

.description{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
}

.homeButton{
    position: fixed;
    left: 30px;
    top: 30px;
    width: 50px;
    height: 25px;
    font-size: 30px;
    transition: 0.3s;
}
.homeButton:hover{
    transform: scale(110%);
    transition: 0.3s;
}

.homeButton img{
    width: 50px;
    border-radius: 6px;
}

a{
    color: #87c476;
}

.galerie{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.galerie img{
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transition: 0.2s;
    cursor: pointer;
}

.galerie img:hover{
    transform: scale(95%);
    transition: 0.2s;
    
}

#fullScreen, #fullScreenV{
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    backdrop-filter: blur(10px);
}

#fullImage, #fullVideo{
    width: 90%;
    max-height: 80%;
    max-width: 900px;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    position: absolute;
    top: 50vh;  
    left: 50vw;
    transform: translate(-50%, -50%);
}

@media screen and (orientation: portrait) {
    .geraetEintrag{
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
        min-height: fit-content;
    }
    .geraetName{
        text-align: center;
    }
    .homeButton{
        left: 15px;
        top: 15px;
    }
    .description{
        align-items: center;
    }


}

.vid1{
    width: 100%;
    margin-top: 10px;
    border-radius: 12px;
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@keyframes growIn{
    0% {transform: scale(90%) translate(-50%, -50%);}
    100% {transform: scale(100%) translate(-50%, -50%);}
}

@keyframes wechsel {
    0% { background-image: url('SlideShowImages/s20.jpg'); }
    5% { background-image: url('SlideShowImages/s1.jpg'); }
    10% { background-image: url('SlideShowImages/s2.jpg'); }
    15% { background-image: url('SlideShowImages/s3.jpg');}
    20% { background-image: url('SlideShowImages/s4.jpg'); }
    25% { background-image: url('SlideShowImages/s5.jpg'); }
    30% { background-image: url('SlideShowImages/s6.jpg'); }
    35% { background-image: url('SlideShowImages/s7.jpg');}
    40% { background-image: url('SlideShowImages/s8.jpg'); }
    45% { background-image: url('SlideShowImages/s9.jpg'); }
    50% { background-image: url('SlideShowImages/s10.jpg'); }
    55% { background-image: url('SlideShowImages/s11.jpg');}
    60% { background-image: url('SlideShowImages/s12.jpg'); }
    65% { background-image: url('SlideShowImages/s13.jpg'); }
    70% { background-image: url('SlideShowImages/s14.jpg'); }
    75% { background-image: url('SlideShowImages/s15.jpg');}
    80% { background-image: url('SlideShowImages/s16.jpg'); }
    85% { background-image: url('SlideShowImages/s26.jpg'); }
    90% { background-image: url('SlideShowImages/s18.jpg'); }
    95% { background-image: url('SlideShowImages/s19.jpg'); }
    100% { background-image: url('SlideShowImages/s20.jpg'); }
  }