body {
  /* color: #40514E; #E4F9F5*/
  height: 100%;
  margin: 0;
  text-align: center;
  background-color: #596e79;
}

h1 {
  text-align: center;
  color: dimgray;
}

h2 {
  font-weight: 300;
  font-size: 1.5rem;
}

h3 {
  margin-bottom: 16px;
}

hr {
  border: dotted #c7b198 6px;
  border-bottom: none;
  width: 4%;
  margin: 5px auto;
  margin-top: 5px;
  margin-bottom: 10px;
}

.bold {
  font-weight: bold;
}

.body-section {
  text-align: center;
  flex: 1;
  position: relative;
  margin-left: 10%;
  margin-right: 10%;
}

.fixed {
  /* background-color: #232930; #f8f9fa*/
  padding-top: 6px;
  padding-bottom: 1px;
  position: fixed;
  width: 100%;
  z-index: 1;
  text-align: center;
  background-color: #dfd3c3;
}
/* 
.top-line {
  padding-top: 13px;
  padding-bottom: 50px;
  background-color: #c7b198;
} */

.content-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Mindestens die Höhe des Viewports */
}

.top-section {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10%;
  padding-right: 10%;
}

.text-white {
  color: #f0ece3;
}

.left-aligned {
  text-align: left;
}

#meditations-arten {
  text-align: left;
}

@media only screen and (max-width: 800px) {
  .top-section {
    text-align: left;
    padding-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
  }

  h1 {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.2rem;
    line-height: 1;
  }

  .top-line {
    padding-top: 37px;
    padding-bottom: 5px;
  }
}

/* Calendar section */
#calendar {
  background-color: #fff;
  position: relative;
  /* z-index: 1;      not needed, because this section is on top anyways because in the html-file it comes after the top section*/
  text-align: centerF;
}

.container-fluid {
  padding: 3% 12%;
  /* if 3 numbers: top left&right bottom */
}

.col-title {
  font-weight: 700;
  font-size: 1.5rem;
}

.feature-box {
  padding: 2%;
}

img {
  margin-top: 90px;
  margin-bottom: 20px;
  width: 660px;
  max-width: 100%;
  height: auto;
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.5);
}

.button-container {
  display: flex;
  justify-content: space-around; /* Buttons gleichmäßig verteilen */
  flex-wrap: wrap; /* Buttons umbrechen, wenn der Platz nicht ausreicht */
  margin: 20px 0;
}

.button {
  flex: 1 1 30%; /* Jeder Button nimmt mindestens 30% der Breite ein */
  margin: 10px;
  padding: 10px;
  text-align: center;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .button {
    flex: 1 1 100%; /* Buttons nehmen bei kleinen Bildschirmen die volle Breite ein */
  }

  .body-section {
    margin: 0;
    padding: 10px;
  }

  body {
    font-size: 1.2rem;
  }

  footer {
    font-size: 1.1rem;
  }
}

footer {
  width: 100%;
  z-index: 1;
  text-align: center;
  background-color: #dfd3c3;
  color: dimgray;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  line-height: 0.9rem;
  padding-top: 14px;
  /* padding-bottom: 20px; */
}

section {
  margin-bottom: 14px;
  text-align: center;
}
