header {
    height: 100vh;
    background-image: url("../assets/images/lenny-winkel-de-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 75%;
}

/*You only need the following if you use a text instead of a logo. Otherwise you can delete it or leave it commented out.
.frontheading {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 140px;
    font-family: "frontheading";
}*/

.frontlogo {
    display: flex;
    justify-content: center;
    padding-top: 100px;
}

.frontlogo img {
    height: 600px;
}

.navbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    background-color: rgb(255, 255, 255);
    z-index: 100;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar.fixed {
    position: fixed;
    top: 0;
    bottom: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu {
    padding-left: 64px;
    padding-right: 64px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
}

.menu .linktext {
    color: rgb(151, 39, 39);
    font-size: 18px;
    font-family: "Roboto";
    transition: color 0.3s ease-in-out;
    position: relative;
}

.menu .linktext:hover {
    color: rgb(85, 16, 16);
}

.menu .linktext::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgb(85, 16, 16);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

.menu .linktext:hover::after {
    visibility: visible;
    transform: scaleX(1);
}

.menu img {
    height: 120px;
}