* 
body {
  background-attachment: fixed;
  background-image: url("../img/Background/background2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #ffffff;
}

/* header styling */

h1 {
  font-size: 48px;
}

.title {
  display: flex;
  justify-content: center;
  padding-top: 58px;
}
.img_container {
  padding-top: 40px;
  display: flex;
  justify-content: center;
}

.baby_music_img {
  width: 100%;
  border-radius: 15px;
}

.info_container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 10px 0 10px;
  width: 100%;
}

.info_container p {
  font-size: 20px;
}
/* icon styling */

.icons {
  height: 35px;
  align-items: center;
}

.age_group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 25px;
}

.age_group p {
  font-size: 20px;
}

.age_group img {
  padding-right: 5px;
}
.event_text {
  display: block;
  padding: 0 25px 50px;
  z-index: 1000;
  margin-bottom: -150px;
}
.event_text p {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  padding: 10px;
  margin-bottom: 30px;
}

.bottom_img_cont {
  position: relative;
  z-index: -1;
}
.bottom_img_cont img {
  width: 100%;
}


/* media queries styling elements when the screen is under 400px */

@media screen and (max-width: 400px) {
  .info_container .icons {
    height: 25px;
  }
  .info_container p {
    font-size: 15px;
    transition: all 1s ease;
  }
  .event_text p {
    transition: all 1s ease;
  }
}


/* media queries styling elements starting at 700px */

@media screen and (min-width: 700px) {
  .info_container .icons {
    height: 45px;
  }
  .info_container p {
    font-size: 30px;
    transition: all 1s ease;
  }
  .age_group p {
    font-size: 30px;
    transition: all 1s ease;
  }
  .event_text p {
    font-size: 30px;
    transition: all 1s ease;
  }
}
