body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #e23314;
    color: hsl(210, 40%, 2%);
}

header {
    background: #f50606;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    width: 97%;
}

p{
    justify-content: center;
    justify-items: center;
    justify-self: center;
}
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
}
.box{
    float: left;
    display: flex;
}
section {
    justify-content: center;
    justify-items: center;
    justify-self: center;
}

.menu-item {
    justify-content: center;
    justify-items: center;
    justify-self: center;
    width: 200px;
    height: 370px;
    background: #a72424;
    padding: 15px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 40px;
    border: 1px solid red;
}

img{
    width: 200px;
    height: 200px;
    gap: 50px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

img:hover{
   transform: scale(1.04);
}

.contact-button{
    width: 160px;
    height: 40px;
    background: rgb(255, 0, 0);
    border: 1px solid black;
    margin-bottom: 10px;
    margin-left: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: .7s ease-in-out;
  }
  
  .contact-button a{
    text-decoration: none;
    color: black; 
    font-weight: bold;
    transition:  0.3s ease;
  }
  
  .contact-button:hover {
    background: rgb(112, 32, 32);
    text-decoration: none;
    color: #000;
    transition: .3s ease;
  }

  .order{
    width: 110px;
    height: 40px;
    background: rgb(255, 8, 0);
    border: 2px solid rgb(19, 16, 15);
    color: white;
    font-size: 16px;
    border-radius: 8px;
}

.order:hover{
    background-color: rgb(32, 104, 10);
    transition: 0.7s ease-in-out;
    cursor: pointer;
}
footer {
    text-align: center;
    padding: 10px;
    background: #080101;
    color: #ffffff;
    position: relative;
    bottom: 0;
    width: 98.5%;
}
