body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: burlywood;
}


.header {
    background-color: black;
    width: 100%;
}

.header img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    padding-left: 5px;
    padding-top: 2px;
}

.nav-bar {
    float: right;
    margin-right: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.nav-bar a {
    text-decoration: none;
    color: white;
    font-size: 25px;
    padding-right: 10px;
}

.hero {
    margin-top: 0;
    width: 100%;
    height: 400px;
    background-image: url(https://t4.ftcdn.net/jpg/02/90/80/25/360_F_290802535_MttPB3KMMRsqT76hXi7IGdCxKvYaumJ6.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero h1 {
    color: white;
    text-align: center;
    padding-top: 140px;
    font-size: 50px;
    margin-top: 0;
}

.menu-items {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.categories {
    background-color: black;
    display: inline-block;
}

.categories img {
    height: 200px;
    width: 250px;
}

.categories h2 {
    color: white;
    text-align: center;
}

.items {
    display: flex;
    justify-content: center;
    align-content: center;
    margin-top: 80px;
    margin-bottom: 50px;
}

.starters {
    background-color: black;
    display: inline-block;
    margin-left: 15px;
    margin-top: 15px;
}

.starters img {
    height: 250px;
    width: 300px;
}

.starters h3 {
    color: white;
    margin-top: 5px;
    padding-left: 5px;
}

.starters p{
    color: white;
    padding-left: 5px;
    font-size: 20px;
}

.order {
    display: flex;
    justify-content: center;
    padding-bottom: 5px;
}

a button {
    height: 40px;
    width: 100px;
    border-radius: 10%;
    font-size: 15px;
    font-weight: 600;
}

:hover a button {
    cursor: pointer;
}

.info {
    background-color: black;
    height: fit-content;
    width: 50%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.food-info img {
    width: 100%;
    height: 400px;
    
}

.food-info h1 {
    color: white;
    text-align: center;
    border: 3px solid white;
    padding: 4px;
}

.food-info p {
    display: inline-block;
    margin-left: 20px;
    margin-right: 20px;
    color: white;
    font-size: 15px;
}

.food-info input {
    margin-left: 20px;
}

.food-info label {
    color: white;
}

.description p {
    font-size: 20px;
}

.food-info h3 {
    color: white;
    font-size: 15px;
    margin-left: 20px;
}

.back {
   display: flex;
   justify-content: center;
   margin-top: 20px;
}






@media only screen and (min-width: 2000px) {
    .categories img {
        height: 300px;
        width: 450px;
    }
}


@media only screen and (max-width: 1000px) {
    .categories img {
        height: 200px;
        width: 350px;
    }

    .categories {
       margin-bottom: 10px;
    }
}

@media only screen and (max-width: 542px) {
    .nav-bar a {
        font-size: 15px;
    }

    .nav-bar {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 400px) {
    .nav-bar a {
        font-size: 10px;
    }

    .nav-bar {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 967px) {
    .items {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 1050px) {
    .info {
        width: 60%;
    }
    
}

@media only screen and (max-width: 900px) {
    .info {
        width: 80%;
    }
    
}

@media only screen and (max-width: 650px) {
    .info {
        width: 90%;
    }
    
}

@media only screen and (max-width: 567px) {
    .info {
        width: 100%;
    }
    
}

@media only screen and (min-width: 1500px) {
    .info {
        width: 40%;
    }
    
}














































