.home {
    min-height: 100vh;
    background-color: #EBE6DE;
    position: relative;
    overflow: hidden;
}

b {
    font-family: Roboto-Bold;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    top: 10%;
}

.title h1 {
    font-family: Roboto-Light;
}


/* Bottom-Text */
.home-bottom-text {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-right: 75px;
    margin-bottom: 50px;
} 

.home-bottom-text p {
    font-family: AutoSignature;
    font-size: 25px;
    font-weight: bolder;
}


/* Pfeil */
.start-main-pfeil {
    width: 100%;
    bottom: 20px;
    position: absolute;
    border-radius: 50%;
    /* Anordnung */
    display: flex;
    align-self: end;
    align-items: center;
    justify-content: center;
}

.start-main-pfeil img {
    height: 50px;
    position: relative;
    animation: moveUpDown 1.25s ease-in-out infinite;
}

/* Animation */
@keyframes moveUpDown {
  0%, 100% { top: 0; }
  50% { top: -10px; }
}


@media only screen and (max-width: 1000px) {
    .home-bottom-text {
        width: 125px;
        margin-right: 25px;
        margin-bottom: 25px;
    } 

    .home-bottom-text p {
        text-align: right;
        font-size: 17px;
    }
        
    .start-main-pfeil {
        bottom: 0px;
    }

    .start-main-pfeil img {
        height: 40px;
    }
}

/* Carousel */
.carousel {
    width: 100%;
    margin-top: 60px;
    height: 300px;
    overflow: hidden;    
    position: relative;
}

.carousel-inner {
    display: flex;
    width: 200%;
    animation: slide 90s linear infinite;
    position: absolute;
    bottom: 0; 
}

.carousel-inner img {
    height: 300px;
    margin-left: 7.5px;
    margin-right: 7.5px;
    border-radius: 15px;
    object-fit: cover;
}


@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .carousel {
        margin-top: 10px;
        margin-bottom: 90px;
    }

    .carousel-inner {
        animation: slide 60s linear infinite;
    }

    .carousel-inner img {
        width: 45%; 
        height: 20%; 
        margin: 2.5%;
    }
}

@media (max-width: 1250px) {
    .carousel {
        margin-top: -75px;
        margin-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .carousel {
        margin-top: 15px;
        height: 160px; 
    }

    .carousel-inner img {
        height: 150px;
        width: 200px;
        padding: 0;
        margin: 7.5px;
    }
}