#center_rdv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
}

#center_rdv h1 {
  font-family: "Oswald", sans-serif;
  font-size: 45px;
  font-weight: 500;
  animation: floating 10s infinite;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 5vh;
}

#center_rdv img {
  width: 70px;
  animation: floating_icons_start 1.5s;
}

#align_icons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 80%;
}

#align_icons div {
  margin: 15px 10px;
}

#align_icons a {
  color: black;
  text-decoration: underline;
  font-weight: 400;
}

#align_icons p {
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 19px;
  letter-spacing: 0.4px;
}

#scroll {
  bottom: 10px;
  animation: floating 2s infinite;
}

#reservation p {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 18px;
}

#reservation {
  max-width: 500px;
}

/* ===== ANIMATION "FLOATING" OF APOINTMENT_ICONS ===== */
@keyframes floating_icons_start {
  0% {
    transform: translate(0%, -100%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
