* {
    font-family: "Dancing Script", sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.flex-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1300px;
    padding: 30px 15px;
}

header .container-banner .banner {
    object-fit: cover;
    width: 75px;
    height: auto;
}

header .container-links .content-bars {
    display: none;
}

header .container-links .content-links .list-links {
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px;
}

header .container-title .title {
    font-size: 18px;
    font-weight: 600;
}


header .container-title .banner {
    object-fit: cover;
    width: auto;
    height: 50px;
}

header .container-links .list-links {
    list-style: none;
    gap: 15px;
}

header .container-links .content-links .list-links .link {
    text-decoration: none;
    font-size: 18px;
    color: black;
}

header .container-buttons .content-bars i {
    font-size: 18px;
}

header .container-buttons .content-bars .fa-bars {
    display: none;
}

.container-start,
.container-about,
.container-menu {
    padding: 15px;
}

.container-start {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.container-start .content-details {
    padding: 60px 30px;
    border-radius: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    max-width: 500px;
    flex-direction: column;
    z-index: 1000;
    gap: 30px;
}

.container-start .content-details .title {
    font-size: 25px;
    color: white;
}

.container-start .content-details .separator {
    width: 100px;
}

.container-start .content-details .desc {
    font-size: 18px;
    text-align: center;
    color: white;
    padding: 0 25px;
}

.container-start .content-details .menu {
    width: 150px;
    height: 55px;
    border: 1px solid white;
    background: none;
    font-size: 18px;
    color: white;
}

.container-start .banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    height: 450px;
    width: 100%;
    z-index: -100;
    filter: brightness(60%);
}

.container-about {
    padding: 15px;
    max-width: 1300px;
    margin: 0 auto;
    gap: 15px;
}

.container-about .banner {
    object-fit: cover;
    max-width: 350px;
    height: 350px;
}

.container-about .content-separator {
    width: 100%;
    gap: 15px;
}

.container-about .content-box {
    background-color: whitesmoke;
    padding: 30px;
    width: 100%;
    height: 350px;
}

.container-about .content-box .content-details {
    flex-direction: column;
    gap: 15px;
}

.container-about .content-box .content-details .sub {
    font-size: 15px;
}

.container-about .content-box .content-details .title {
    font-size: 25px;
}

.container-about .content-box .content-details .separator {
    width: 100px;
}

.container-about .content-box .content-details .desc {
    font-size: 18px;
    text-align: center;
}

.container-about .content-box .content-details .blank {
    width: 150px;
    height: 55px;
    border: none;
    font-size: 18px;
}

.container-menu {
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    gap: 15px;
}

.container-menu .banner {
    width: 490px;
    height: 400px;
    flex: 1;
}

.container-menu .content-items .list-items {
    align-items: flex-start;
    justify-content: space-between;
    background-color: whitesmoke;
    flex-direction: column;
    padding: 30px;
    width: 450px;
    height: 400px;
    list-style: none;
    flex: 1;
    gap: 30px;
}

.container-menu .content-items .list-items li .part {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.container-menu .content-items .list-items li .part .title {
    font-size: 20px;
}

.container-menu .content-items .list-items li .desc {
    font-size: 18px;
}

.container-menu .content-items .list-items li .part .separator {
    width: 100px;
}

.container-menu .content-items .list-items li .part .price {
    font-size: 18px;
}

@media (max-width: 1200px) {
    header {
        padding: 20px 15px;
    }

    .container-start .content-details {
        padding: 30px 15px;
    }
}

@media (max-width: 1100px) {
    .container-about {
        flex-direction: column-reverse;
    }

    .container-about .banner {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 1000px) {
    .container-start {
        height: 300px;
    }

    .container-start .content-details {
        gap: 15px;
    }

    .container-start .content-details .title {
        font-size: 18px;
    }

    .container-start .content-details .menu {
        width: 125px;
        height: 45px;
    }

    .container-menu {
        flex-direction: column-reverse;
    }

    .container-menu .banner {
        width: 100%;
        height: 300px;
        object-fit: cover;
        flex: none;
    }

    .container-menu .content-items .list-items {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 800px) {
    header {
        padding: 15px;
    }

    header .container-banner .banner {
        width: 60px;
    }

    header .container-links {
        display: none;
    }

    header .container-buttons .content-bars .fa-moon {
        display: none;
    }

    header .container-buttons .content-bars .fa-bars {
        display: block;
    }

    .container-start .content-details .desc {
        padding: 0 10px;
    }

    .container-about .content-separator {
        flex-direction: column-reverse;
    }

    .container-about .content-separator .content-box .content-details {
        padding: 30px 10px;

    }

    .container-start .content-details .title,
    .container-start .content-details .desc {
        font-size: 15px;
    }

    .container-about .content-box .content-details .title,
    .container-about .content-box .content-details .desc {
        font-size: 15px;
    }

    .container-about .content-box .content-details .blank {
        width: 150px;
        height: 45px;
    }
}