.nutrition {
  padding-top: 70px;
  text-align: center;
}

.nutrition h1 {
  font-size: 3rem;
  color: var(--logoBlue);
}

.nutrition h2 {
  font-size: 2rem;
  color: var(--deepSky);
  margin-bottom: 50px;
}

.nutrition p {
  width: 80%;
  margin: 0 auto 20px auto;
}

.childcare-food {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.childcare-food .img-wrapper {
  flex: 1 1 49%;
  aspect-ratio: 1/0.85;
  background-image: url(media/nutritionPic.png);
  background-size: cover;
  background-position: center;
}
.childcare-food .text-wrapper {
  flex: 1 1 49%;
  padding: 0 5%;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;
}
.childcare-food .text-wrapper h1 {
  font-size: 3rem;
  color: var(--logoBlue);
  text-align: center;
  margin-bottom: 30px;
}
.childcare-food .text-wrapper p {
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .childcare-food {
    display: block;
  }

  .img-wrapper {
    height: 400px;
    width: 100%;
    margin-bottom: 30px;
  }
}
