@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

body{
    background: #222;
}

.columns{
    display: flex;
}

.left-menu{
    background: #333;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 56px;
}

.top{
    display: flex;
    flex-direction: column;
}

.left-menu.open{
    width: 300px;
}

.left-menu .logo{
    width: 36px;
    padding: 10px;
}

.horizontal{
    display: flex;
    gap: 10px;
    align-items: center;
}

.horizontal p:not(.title){
    color: white;
    display: none;
    font-weight: bold;
}

.title{
    color: #ffaf1b;
    display: none;
    font-weight: bold;
}

.menu:hover{
    background: #555;
}

.list{
    display: none;
    flex-direction: column;
}

.list a{
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.list a:hover{
    background: #555;
}

.make-white{
    filter: invert(1);
}

.make-black{
    filter: invert(0);
}

.left-menu.open > .top .horizontal p{
    display: block;
}

.left-menu.open > .bottom .impressum p{
    display: block;
}

.left-menu.open > .bottom .impressum{
    width: 300px;
}

.left-menu.open > .top .horizontal{
    width: 300px;
}


.left-menu.open > .top .list{
    display: flex;
}

.left-menu .burger{
    width: 26px;
    height: 26px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.left-menu .burger div{
    width: 26px;
    height: 3px;
    background: white;
}

.impressum a{
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}

.impressum:hover{
    background: #555;
}

.impressum p{
    color: white;
    display: none;
}

::-webkit-scrollbar{
    appearance: none;
}

::-webkit-scrollbar-track{
    background: #333;
}

::-webkit-scrollbar-thumb{
    background: #555;
}

.main{
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
}

.bunner{
    height: 50vh;
    width: 100%;
    background: #ffaf1b;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.bunner .text{
    text-align: center;
}

.bunner h1{
    font-weight: 400;
    font-size: 30pt;
    margin: 0px 50px;
    width: calc(100% - 100px);
}

.bottom{
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 700px) {
    .bunner{
        height: calc(50vh - 56px);
    }

    .bunner h1{
        font-size: 24pt;
    }

    .columns{
        flex-direction: column;
    }

    .left-menu{
        height: 56px;
        width: 100%;
        flex-direction: row;
    }

    .top{
        flex-direction: row;
    }

    .left-menu.open{
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .left-menu.open > .top{
        flex-direction: column;
    }


    .left-menu.open > .top .horizontal{
        width: 100vw;
    }

    .horizontal.menu{
        height: 56px;
    }

    .menu:hover{
        background: #333;
    }

    .impressum:hover{
        background: #333;
    }

    .bottom{
        display: flex;
        flex-direction: row;
    }

    .left-menu.open > .bottom{
        flex-direction: column;
    }
}