html {
  font-size: 1em;
  font-family: 'Cabin', 'Lato', sans-serif;
  height: 100%;
  background-image: url('./../images/pizza-background.jpg');
  background-size: cover;
}

body {
  text-align: center;
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
}

.container {
  margin: 0 auto;
  padding: 1.5em;
  max-width: 70%;
  background-color: hsla(0, 0%, 100%, 0.7);
  border: 0.125em solid hsla(300, 95%, 70%, 0.5);
  box-shadow: 0 0 0.25em 0 hsl(300, 95%, 70%);
}

.container-flex {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 860px) {
  .container {
    border-radius: 1em;
  }
}

.container section {
  width: 100%;
}

.pizzawahl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
}

.card {
  background: white;
  width: 18rem;
  height: 100%;
  border-radius: 0.5em;
  box-shadow: 0 0 0.25em 0 hsl(300, 95%, 70%);
}

.card:hover {
  transform: translateY(-2.5%);
  box-shadow: 0 0 0.125em 0 hsl(300, 95%, 70%),
    0 2.5em 1.5em -2em hsl(300, 95%, 70%);
  cursor: default;
}

.card img {
  width: 100%;
  max-height: 10rem;
  border-radius: 0.5em 0.5em 0 0;
}

.card p {
  font-size: 1.125em;
}

.warenkorb form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.warenkorb form div {
  flex-grow: 1;
  width: 20rem;
}

.warenkorb select {
  width: 90%;
  font-size: 1rem;
  font-family: 'Cabin', 'Lato', sans-serif;
  border: none;
  border-radius: 0.5em;
  box-shadow: 0 0 0.125em 0 hsl(300, 95%, 70%);
}

.warenkorb select:focus {
  outline: none;
}

.warenkorb select option {
  text-align: center;
}

.basket p {
  font-size: 1.5em;
}

.warenkorb select option:hover {
  color: black;
  background: hsl(300, 95%, 70%);
}

.options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.warenkorb input {
  width: 90%;
  font-size: 1.125rem;
  font-family: 'Cabin', 'Lato', sans-serif;
  border: none;
  border-radius: 0.25em;
  box-shadow: 0 0 0.125em 0 hsl(300, 95%, 70%);
}

.warenkorb input:focus {
  outline: none;
}

.warenkorb input:focus,
.warenkorb input:hover {
  box-shadow: 0 0 0.5em 0 hsl(300, 95%, 70%);
}

.warenkorb button {
  /* width: 45%; */
  font-size: 1rem;
  font-family: 'Cabin', 'Lato', sans-serif;
  background: white;
  color: black;
  border: none;
  box-shadow: 0 0 0.25em 0 hsl(300, 95%, 70%);
  padding: 0.5em 2em;
  border-radius: 0.5em;
}

.warenkorb button:focus {
  outline: none;
}

.warenkorb button:hover:enabled,
.warenkorb button:focus:enabled {
  transform: scale(1.05);
  box-shadow: 0 0 0.5em 0 hsl(300, 95%, 70%);
}

.warenkorb button:disabled {
  background: hsl(0, 0%, 100%);
  opacity: 30%;
}

.warenkorb button:hover:disabled {
  box-shadow: 0 0 0.5em 0.5em hsl(0, 100%, 50%);
}
