body {
    background-color: rgb(18, 18, 23);
    /* altes hellgrau rgb(180, 184, 192)*/
    font-family: "scandia-line-web", sans-serif;
}

html {
    scroll-behavior: smooth;
}

.leiste {
    position: fixed;
    display: flex;

    width: 100%;
    font-weight: 500;
    font-style: normal;
    background-color: white;
    align-items: center;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.16);
    transition: top 0.5s;
}

.leiste__titel {
    text-align: center;
    flex: 1;
}

.leiste__pfeil {
    width: 35px;
    transition: transform 0.3s ease-in-out;
}

.leiste__pfeil:hover {
    transform: scaleY(0.5) scaleX(1.2);
}

.leiste__pfeil--links {
    text-align: right;
}

.pfeil__unten {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transition: transform 0.3s ease-in-out;
    scale: 120%;
    mix-blend-mode: luminosity;
}

.pfeil__unten:hover {
    transform: scaleY(0.5) scaleX(1.2);
}

.leiste__sprache {
    display: flex;
    font-size: 25px;
    font-weight: 500;
    font-style: normal;
    background-color: white;
    align-items: center;
    padding: 12px;
    box-shadow: 5px 6px 3px rgba(0, 0, 0, 0.16);
}

.leiste__name {
    display: flex;
    font-weight: 500;
    font-style: normal;
    color: black;
    background-color: white;
    align-items: center;
    padding: 12px;
    text-align: right;
    box-shadow: 5px 6px 3px rgba(0, 0, 0, 0.16);
    color: black;
    text-decoration: none;
}

.leiste__name:hover {
    animation: wiggle 0.5s infinite;
}

.leiste__sprache:hover {
    animation: wiggle 0.5s infinite;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25%,
    75% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-5deg);
    }

}

.bilder__bild {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    position: relative;
}

.projekttexte__details {
    background-color: white;
    padding: 25px;
    justify-content: flex-end;
}

.projekttexte__beschrieb {
    border: 2.5px solid black;
    background-color: white;
    padding: 25px;
}

.projektbilder {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.projektbilder__projekt {
    padding-bottom: 25px;
}

.video {
    width: 30vw;
    left: 50%
}

.link {
    color: black;
    text-decoration: none;
}

::selection {
    background: black;
    color: white;
}

.projekttexte__beschrieb_link {
    color: black;
    text-decoration: none;
    font-style: oblique;
}

.projekttexte__beschrieb_link:hover {
    text-decoration: underline;
}

.fusszeile-box {
    width: 100%;
    background-color: rgb(45, 45, 50);
    padding: 20px;
    /* Space inside the box */
    box-sizing: border-box;
    bottom: 0;
    left: 0;
    text-align: left;
}

.fusszeile-box p {
    color: rgb(180, 184, 192);
}

.fusszeile-box a.link {
    color: rgb(180, 184, 192);
    /* Macht die Links weiss */
    text-decoration: none;
    /* Entfernt die Unterstreichung */
}

.fusszeile-box a.link:hover {
    text-decoration: underline;
    /* Unterstreicht den Link bei Hover (optional) */
}
