html, body{
        height: 100%;
        background-image: url("img/background.png");
        background-size: cover;       /* Bild wird gestreckt, um den Bildschirm zu füllen */
        background-position: center;  /* Zentriert das Bild */
        background-repeat: no-repeat; /* Bild wird nicht gekachelt */
        margin: 0;
        padding: 0;
        font-family: sans-serif;
    }
    

.header-main-logo {
    width: 120px;
    height: 100%;
    background-color: yellow;

}

.header-main-nav{
    width: 120px;
    height: 100%;
    background-color: blue;
}

.header-main-sm{
    width: 120px;
    height: 100%;
    background-color: red;
}