* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial;
    font-size: 16px;
}

.container {
    width: 87%;
    max-width: 1200px;
    margin: auto;
    /*border: 1px solid #000;*/
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

    text-align: center;

    font-size: 4vw;
    color: #DE5300;
    text-shadow: 0px 0px 7px #000;
}

nav {}

main {
    padding: 35px;
    background-color: yellowgreen;
}

section {
    margin-bottom: 100px;
}

iframe {
    width: 40%;
    border: 5px solid #a60707;
    border-radius: 33px;
}

.you {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 0px
}

.sound {
    width: 100%;
    height: auto;
    border: 0;
    border-radius: 0px
}

video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.intro {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: -1;
    /*steuert die Reihenfolge von positionierten Elementen*/

    /*filter: grayscale(100%);*/
    /*filter: hue-rotate(256deg);*/

}

object {
    width: 100%;
    height: 600px;
}

/* Schieberegler Styling */
.slider-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #DE5300 0%, #DE5300 50%, #ccc 50%, #ccc 100%);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #DE5300;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #DE5300;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* Animation für Webdesign Text */
.animated-text {
    font-size: 48px;
    font-weight: bold;
    color: #DE5300;
    text-shadow: 0px 0px 7px #000;
    white-space: nowrap;
    overflow: hidden;
    animation: scrollText 8s linear infinite;
    padding: 20px 0;
}

@keyframes scrollText {
    0% {
        transform: translateX(-100vw);
    }

    100% {
        transform: translateX(100vw);
    }
}

footer {}