

/* Header */
header {
    background: #111;              /* Dunkler Hintergrund */
    
    padding: 15px ;
    padding-left: 48px;
    padding-right: 30%;
    

    display: flex;
    align-items: center;
    gap: 120px;                             /**/

    border-bottom: 1px solid #222;

    
    position: sticky;
    top: 0;
    

    font-family: Arial, sans-serif;

    /*position: relative;*/
    margin-top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;


    /*position: fixed;*/
    top: 0;
    left: 0;
    width: 100vw;

    z-index: 1000;
}


header * {
    margin-top: 0;
}



header img {
    height: 60px;
    width: auto;

    margin-right: auto; /* Schiebt Links nach rechts */
}

header a {
    color: #f5f5f5;
    text-decoration: none;

    font-size: 16px;
    font-weight: 500;

    transition: 0.2s ease;
}

header a:hover {
    color: #999;
}

header a:active {
    transform: scale(0.97);
}