body {
    background: #1b1b1b;
}

.main-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    background-image: url(../img/burger_bg2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1b1b1b;
    background-color: #1b1b1b;
    background: #1b1b1b;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF1b1b1b', endColorstr='#FF1b1b1b', GradientType=0);
    background: linear-gradient(to bottom, #1b1b1b, #1b1b1b);
    background: -moz-linear-gradient(top, #1b1b1b, #1b1b1b);
    background: -webkit-linear-gradient(top, #1b1b1b, #1b1b1b);
    background: -o-linear-gradient(top, #1b1b1b, #1b1b1b);
    background: -ms-linear-gradient(top, #1b1b1b, #1b1b1b);

    color: white;
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
}

.logo {
    background-image: url('../img/le11logo.png');
    background-size: 225px;
    background-position: -25px -191px;
    width: 80px;
    height: 40px;
}


.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
}

.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: 1.5rem;
    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;
}
.about_en, .about_fr {
    display: block;
    position: relative;
    float: left;
    color: #fff;
    width: 50%;
}
.menu > img {
    max-width: 50%;
    display: block;
    float: left;
    border: 1px solid #1b1b1b;
}
address {
    color: #e5c163;
}
@media (max-width: 800px) {
    .menu > img {
        max-width: 100%;
        display: block;
        float: left;
        border: 1px solid #1b1b1b;
    }
    .about_en, .about_fr  {
        width: 100%;
        color: #fff;

    }
    .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;
    }
}