@media(min-width: 769px){
    .banner{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        background-color: #3286d4;
        width: 100%;
        height: 8vh;
        left: 0;                        /* bis zum linken rand ausfüllen*/
        right: 0;
        top: 0;                         /* start am oberen rand*/
        z-index: 1000;
    }

    .search-container{
        color: #ffffff;
        position: fixed;
        top: 8vh;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 10vh;
        background-color: #ffffff;
        z-index: 9000;
    }

    .search-container input{
        text-align: center;
        color: #ffffff;
        background-color: #3286d4;
        width: 80%;
        max-width: 1200px;
        height: 50px;
        border: none;
        border-radius: 5px;
        outline: none;
    }

    .search-container::after{
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background-color: #ccc;
        
    }

    .search-container input::placeholder{
        color: #ffffff;
        justify-content: center;
        font-size: 20px;
        align-items: center;
    }
    
    .logo{
        display: flex;
        align-items: center;
        height: 100%;
    }

    .logo img{
        width: auto;
        height: 80%;
        padding-left: 1vw;
    }

    .buttons{
        display: flex;
        gap: 10px;
        align-items: center;
        margin-left: auto;
        padding-right: 2vw;
        height: 100%;
    }

    .buttons img{
        width: 80%;
        height: auto;
    }
}