* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-decoration-color: currentColor;
}

#divTurnos {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-content: center;
}
.card {
  margin: 2em;
  opacity: 0.8;
}

.card-body {
  text-align: center;
}

.indexBody {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.title {
  width: 40%;
  margin-right: 2em;
}

.titleBody {
  color: white;
  font-size: 7rem;
  text-align: right;
  animation-duration: 2s;
  animation-name: entradaTitulo1;
}
@keyframes entradaTitulo1 {
  from {
    margin-right: 100%;
    opacity: 0;
  }
  to {
    margin-right: 0%;
    opacity: 1;
  }
}

.subTitleBody {
  color: white;
  font-family: cursive;
  font-size: 2.5rem;
  font-weight: 100;
  text-align: right;
  text-transform: capitalize;
  animation-duration: 3s;
  animation-name: entradaSubtitulo1;
}
@keyframes entradaSubtitulo1 {
  from {
    margin-right: 100%;
    opacity: 0;
  }
  to {
    margin-right: 0%;
    opacity: 1;
  }
}

.navIndex {
  width: 40%;
  margin-left: 2em;
  justify-content: space-between;
  color: white;
}
.navLi {
  color: white;
  font-family: "Poiret One", cursive;
  font-size: 8rem;
  font-weight: 50;
  display: flex;
  flex-direction: column;
  list-style: none;
  animation-duration: 3s;
  animation-name: entradaNav1;
}
@keyframes entradaNav1 {
  from {
    margin-left: 100%;
    opacity: 0;
  }
  to {
    margin-left: 0%;
    opacity: 1;
  }
}

body {
  width: 100%;
  height: 100vh;
  background-image: url(/img/Fondo_Marce_duotone.jpg);
  background-repeat:repeat-y;
  background-size: auto;
  background-position: center;
}

.navTurnos {
  width: 100%;
  height: 20vh;
  position: absolute;
}

.turnos {
  width: 100%;
  height: 100vh;
  padding-top: 4em;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

textarea {
  background-color: #34644c;
  list-style: none;
}

.botonReserva {
  color: white;
  margin: 1px;
  padding: 4px 8px;
  background-color: blue;
  border: none;
  border-radius: 6px;
}

#pRespuesta {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  color: white;
  border: none;
  border-radius: 6px;
}

.bodyNoticias {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
}

#noticias {
  width: 70%;
}
.saber {
  margin-top: 4rem;
}
