body {
  background-color: #c10c0c;
}

* {
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5em;
}

.menu {
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.menu-group-heading {
  margin: 0;
  padding-bottom: 1em;
  border-bottom: 2px solid #ccc;
}

.menu-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5.5em;
  padding: 1.5em 0;
}

.menu-item {
  display: flex;
}

.menu-item-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: cover;
  margin-right: 1.5em;
}

.menu-item-text {
  flex-grow: 1;
}

.menu-item-heading {
  display: flex;
  justify-content: space-between;
  margin: 0;
}

.menu-item-name {
  margin-right: 1.5em;
}

.menu-item-description {
  line-height: 1.6;
}

.button-card {

  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 3rem;
  cursor: pointer
}

#button2 {
  /* background-color: transparent;
      height: 50px;
      line-height: 60px; centralizar o texto no centro
      padding-left: 20px;
      padding-right: 20px;
      box-shadow: 5px 5px 4px #000000;
      transition: transform 200ms ease-in-out;
      box-sizing: border-box;
      top: 20%;
       color: white; */

}

#button2 img {
  height: 50px;
}



#button2:hover {
  transform: scale(1.05);
}

@media screen and (min-width: 992px) {
  .menu {
    font-size: 16px;
  }

  .menu-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-item-image {
    width: 125px;
    height: 125px;
  }
}