body {
    font-family: "Arial", sans-serif;
    margin: 0;
    background-color: #F7F7F7;
}

.header {
    background-color: #871D33;
    height: 256px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-emoji {
    font-size: 48px;
    margin: 0 auto;
    text-align: center;
}

.header-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
}

.header-description {
    color: #CFCFCF;
    margin: 4px auto;
    text-align: center;
    max-width: 384px;
}

.wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
    padding-right: 10px;
    padding-left: 10px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.card {
    box-shadow: 0 4px 6px 0 #871D33;
}

.menu {
    display: flex; /* Ausrichtung der Elemente: flex (nebeneinander), block (untereinander), inline-block (links-zentriert), grid (?)*/
    flex-direction:row; /* row or column */
    flex-wrap: wrap;
    justify-content: space-around;
    align-content:stretch; /* vertikale Ausrichtung*/
    background-color: #FFFFFF;
}

.savings {
    display: flex; /* Ausrichtung der Elemente: flex (nebeneinander), block (untereinander), inline-block (links-zentriert), grid (?)*/
    flex-direction:row; /* row or column */
    flex-wrap: wrap;
    justify-content: start;
    align-content: baseline; /* vertikale Ausrichtung*/
    background-color: #FFFFFF;
}

.menu-title {
    margin-bottom: 6px;
    margin-top: 6px;
    font-weight: bold;
    color: #871D33;
}

.check-list {
    display: flex; 
    flex-direction:column;
    flex-wrap: wrap;
}

.button {
  background-color: #eeeeee00;
  border-radius: 8px;
  border-width: 0;
  color: #333333;
  cursor: pointer;
  display: inline-block;
  line-height: 12px;
  list-style: none;
  margin: 10px;
  padding: 10px 12px;
  text-align: center;
  transition: all 200ms;
  vertical-align: baseline;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.flex-container-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items:center;
  }
  