* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f1f5f8;
  font-family: "Zilla Slab", serif;
}

h2 {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  text-align: center;
  color: #ff6a23;
}
.menu {
  margin-top: 20px;
}

.photo {
  width: 30%;
  height: 175px;
  object-fit: cover;
  border: 0.25rem solid black;
  border-radius: 10px;
}
.menu-items {
  display: flex;
  margin: 20px 0;
}
.menu-info {
  margin-left: 20px;
  width: 100%;
}
.menu-title {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid black;
}

h4 {
  color: #e00a00;
  border-bottom: 1px solid black;
}

.menu-text {
  padding-top: 20px;
}

.btn-list{
  display: flex;
  list-style-type: none;
}

.btn-item{
  margin-left: 15px;
  border: 1px solid rgb(155, 23, 23);
  padding: 5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.btn-item:first-child{
  padding: 5px 8px;
}

.btn-item:hover{
background-color: rgb(193, 20, 1);
color: #fff;
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

img{
  width: 175px;
  height:175px;
  object-fit: cover;
  border-radius: 10px;
  border: 0.25rem solid black;
}
