@font-face {
    font-family: "Inter";
    src:
        local("Inter"),
        url("../font/InterVariable.ttf")
}

body {
    background-color: #e7e7e7;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: hsl(0, 0%, 15%);
    box-shadow: 0px 5px 5px black;
    padding: 2px;
}

#h1-1 {
    padding-left: 20px;
    font-size: 30px;
    font-weight: 600;
    color: whitesmoke;
    font-family: "Inter";
}

.navigation:hover {
    color: hsl(0, 0%, 75%);
}

.navigation {
    padding-right: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    margin-left: 20px;
    color: whitesmoke;
    font-family: "Inter";
    text-shadow: 0px 1px 1px;
}

#h1-2 {
    color: black;
    font-family: "Inter";
    padding-left: 10px;
}

.bild {
    width: 600px;
    border-radius: 10px;
    margin-left: 15px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bild:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


.bild-header {
    color: black;
    font-family: "Inter";
    margin-left: 15px;
    margin-bottom: 2px;
}