* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

.menu-card {
  width: 300px;
  background-image: linear-gradient(248deg, rgb(25, 138, 63), rgb(102, 153, 69));
  background-color: rgb(231, 231, 231);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  color: #fff;
  text-align: left;
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.menu-card h2 {
  font-family: "Brush Script MT", cursive;
  font-weight: normal;
  font-style: normal;
  font-size: 28px;
  margin-bottom: 15px;
}
.menu-card p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.32;
  color: rgb(255, 255, 255);
  font-family: Roboto;
}
.menu-card button {
  padding: 10px 25px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.menu-card button:hover {
  background: #fff;
  color: #2ba94f;
}
.menu-card img {
  width: 340px;
  height: 197px;
  margin-top: 20px;
  border-radius: 0 0 6px 6px;
  transform: translateX(-10%);
}/*# sourceMappingURL=new-resturant-menu.css.map */