<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.seccion {
  color: #ffffff;
  height: 100%;
}

.title {
  text-align: center;
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  margin-top: 50px;
}

.fecha {
  text-align: center;
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
}

.texto {
  margin: 20px;
  padding: 20px;
  text-align: justify;
  font-size: 25px;
}

.completo {
  display: flex;
  flex-direction: column;

  overflow-y: auto;
  
  height: 65vh;
}

.completo::-webkit-scrollbar {
  -webkit-appearance: none;
}

.completo::-webkit-scrollbar:vertical {
  width:10px;
}

.completo::-webkit-scrollbar-button:increment,.contenedor::-webkit-scrollbar-button {
  display: none;
} 

.completo::-webkit-scrollbar:horizontal {
  height: 10px;
}

.completo::-webkit-scrollbar-thumb {
  background-color: #797979;
  border-radius: 20px;
}


.imagenes {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carrusel {
  height: 100%;
  width: 60%;
}

.carrusel &gt; div {
  height: 100%;
  display: grid;
  align-items: center;
  margin: 0 auto;
}

.image {
  border-radius: 28px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 1);
  transition: 0.5s;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 10%;

  max-width: 30vw;
  max-height: 70vh;
  image-rendering: auto;
  aspect-ratio: auto;
}

@media (max-width: 1024px) and (orientation: portrait) {
  .seccion {
    width: 80vw;
    height: 100%;
    margin: 0 5vw;
  }

  .title {
    font-size: 3vh;
    margin-top: 2vh;
    margin-bottom: 0;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  
  .fecha {
    font-size: 2vh;
    margin-bottom: 2vh;
  }
  
  .texto {
    margin: 0;
    font-size: 2vh;
    width: 90%;
  }
    
  .carrusel {
    width: 80%;
    height: auto;
  }

  .image {
    max-height: 30vh;
    max-width: 90%;
  }
}

@media (max-width: 1024px) and (orientation: landscape) {
  .seccion {
    width: 80%;
    height: 100%;
    margin: 0 5vw;
  }

  .title {
    font-size: 3vw;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  
  .fecha {
    font-size: 2vw;
  }
  
  .texto {
    font-size: 2vw;
  }
    
  .carrusel {
    width: 80%;
    height: auto;
  }

  .image {
    max-height: 40vh;
    max-width: 90%;
  }
}</pre></body></html>