* {
  margin: 0;
  padding: 0;
}
body {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(./speisekarte.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: fit-content;
  background-position: center;
  color: azure;
}
.container {
  margin: 2rem;
  border: 3px solid #ff3030;
  border-radius: 1rem;
  padding: 1rem;
}
.header {
  text-align: center;
  margin-top: 1rem;
}
.ochopintre {
  font-size: 1.5rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.vorgang {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.1rem;
  gap: 0.5rem;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.vorspeise,
.hauptspeise,
.nachspeise {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #ddd;
}
.name {
  margin-bottom: 0.7rem;
  margin-top: 0.7rem;
}
.inhalt-preis {
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  gap: 2rem;
}
.preis {
  letter-spacing: 0.1rem;
  margin: auto 0;
}

@media only screen and (min-width: 600px) {
  .inhalt-preis {
    font-size: 1.4rem;
  }
  .name {
    font-size: 2.2rem;
    margin-top: 0.9rem;
  }
  .ochopintre {
    font-size: 1.8;
  }
  .header {
    font-size: 1.8rem;
  }
  .vorgang {
    margin: 0.3rem;
  }
}
