/** { 
    box-sizing: border-box;
}
*/
body {
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    width: 100%;
    top: 0%;
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
}

.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
    padding: 10px;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 1rem;
}

.navbar-links li:hover {
    background-color: #555;
}

.toggle-button {
    position: absolute;
    top: 45px;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

.logo {
    width: 150px;
    cursor: pointer;
}


.header {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-top: 200px;
    font-size: 30px;
}

.bestell-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    margin-bottom: 50px;
} 

.footer {
    background-color: #333;
    padding: 30px;
}

.impressum {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    
}

.info-impressum {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}


.logo-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
}

.logo-footer-size {
    width: 200px;
    cursor: pointer;
}

.kontakt-footer {
    color: white;
    margin-left: 100px;
}

.info-footer {
    color: white;
}

.info-footer ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.info-footer li {
    list-style: none;
}
/*
.info-footer a 
    text-decoration: none;
    color: white;
    padding: 10px;
}
*/
.info-footer a:hover {
    background-color: #555;
}

.speisekarte {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}















@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }

    .header {
        font-size: 17px;
    }

    .logo-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #333;
    }
    
    .logo-footer-size {
        width: 200px;
    }

    .kontakt-footer{
        display: none;
    }
}

@media (max-width: 330px) {
    .header {
        font-size: 14px;
    }
}

@media (max-width: 270px) {
    .header {
        font-size: 12px;
    }
}
