@font-face {
    font-family: 'Satoshi-Variable';
    src: url('fonts/Satoshi-Variable.woff2') format('woff2'),
        url('fonts/Satoshi-Variable.woff') format('woff'),
        url('fonts/Satoshi-Variable.ttf') format('truetype');
    font-display: swap;
    font-style: normal;
}

html {
    scroll-padding-top: 50px;
    scroll-behavior: smooth;
}

body {
    line-height: 1.4;
}

.fett {
    font-weight: 800;
}

.caption {
    margin-top: 8px;
}

.navbar,
.button {
    font-weight: 500;
}

.navbar-item:hover,
.navbar-link:hover {
    background-color: rgb(255, 0, 153) !important;
}

.is-vertical-center {
    display: flex;
    align-items: center;
}

.hero-1 {
    background-image:
        url('img/hero-image-4.svg'),
        url('img/hero-image-3.png'),
        url('img/hero-image-2.svg'),
        url('img/hero-image-1.png');
    background-repeat:
        no-repeat,
        no-repeat,
        no-repeat,
        no-repeat;
    background-position:
        left,
        right 0% bottom,
        right 10% bottom,
        right 20% top;
    background-size:
        120px,
        250px,
        450px,
        540px;
}

@media screen and (max-width: 768px) {
    .hero-1 {
        background-image:
            url('img/hero-image-4.svg'),
            url('img/hero-image-3.png'),
            url('img/hero-image-2.svg'),
            url('img/hero-image-1.png');
        background-repeat:
            no-repeat,
            no-repeat,
            no-repeat,
            no-repeat;
        background-position:
            left,
            right 0% bottom,
            right 10% bottom,
            right -50% top;
        background-size:
            80px,
            120px,
            260px,
            300px;
    }
}


.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 0.5rem;
}

.slider-container .cell {
    flex: 0 0 70%;
    /* Zeigt 80% der Breite, damit man das nächste Video sieht */
    scroll-snap-align: start;
}