#haupttitel{
  font-weight: bold;
  margin-top: 30px;
  display: flex;
  align-items:center;
  justify-content: center;
  color:black;
}

.container-shop {
  display: grid;
  column-gap: 25px;
  grid-template-columns:  auto  auto auto ;
  padding: 0px 20px;
}

.container-shop > div {
  max-width: 25rem;
  background-color: #b9aea2;
  border: 4px solid black;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 30px;
  text-align: center;
}

.card{
  max-width: 25rem;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
}

.card-img-top{
  width: 250px;
  height: 180px;
}

.card-body{
margin: auto;
}

.card-title-ueberschrift{
  font-weight:700;
  font-size: 20px;
  color: rgb(0, 0, 255);
  text-align: left;
}

.card-title-ueberschrift-summary{
  font-weight:700;
  font-size: 20px;
  color: rgb(0, 0, 0);
  text-align: left;
}

.card-title{
  font-weight: 700;
  font-size: 22px;
  color: rgb(255, 0, 0);
  text-align: center;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0px 0px 30px 0px hsl(0, 95%, 47%);
}

.card-table-kosten-fix{
  width: 200px;
  font-size: 20px; 
}

.card-table-kosten-betrag{
  font-size: 25px;
  color: blue;
}
.card-table-kosten-info{
  font-size: 15px;
  color: blue;
}

@media(max-width: 900px){
  .container-shop {
    display: grid;
    column-gap: 20px;
    grid-template-columns:  auto;
    padding: 2px 16px;
  }
}

