html {
    margin: 0;
    padding: 0;
}

html h1 {
    font-size: 1.2rem;
    margin-left: 20%;
    letter-spacing: 0.17rem;
    margin-bottom: 12%;
}

@font-face {
    font-family: 'Roboto';
    src: url('style\Fonts\Roboto\Roboto-Regular.ttf') format(''),
        url('style\Fonts\Roboto\Roboto-Bold.ttf') format('ttf');
}




body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-size: 65.5%;
}

.style {
    /*position: fixed; warum lässt er mich hier keinen margin bottom 
    einfügen um den Abstand zu meinem Inhalt zu vergrößern wenn ich 
    auf position:fixed gehe?*/
    display: flex;
    flex-direction: row;
    margin-bottom: 5%;
    font-family: 'Roboto';
    height: 2.5rem;
    width: 100%;
    background-color: rgb(85, 85, 85);
    padding-left: 3rem;
    z-index: 1;

}


.style img {
    margin: 0rem;
    height: 7rem;
    border-bottom-left-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}

#ll a {
    position: absolute;
    height: 100%;
    width: 100%;

}

.style div {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 6%;
    margin: 0px;
    background-color: grey;
}

main.home {
    margin-top: auto;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 4%;
    width: 100%;

}

.menu ul {
    display: flex;
    list-style: none;
    text-decoration: none;


}

.menu li {
    margin: 2vw;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.17rem;
    font-family: 'Roboto', sans-serif;
    margin-right: 1vw;
}



.fuss {
    /* wie bekomme ich impressum und Datenschutz an den unteren Rand?*/
    right: 0;
    bottom: 0;
    justify-content: right;
    margin-top: 20vh;
    padding: 1rem;
    display: flex;
    margin-right: 1rem;
    gap: 1rem;

}

.fuss a {
    text-decoration: none;
    text-align: right;
    color: black;
    font-family: normal, sans-serif;
}