/* Tipografias */
@font-face {
    font-family: 'typewriter';
    src: url('../tipografias/typewriter.otf') format('truetype');  /* Tipografia Parrafo */
    font-style: normal;
    font-weight: normal;
  }

/*Texto y responsive*/
.cuerpo_texto{
	font-family: 'typewriter';
	font-size: 23px;
	line-height: 35px;
	color: #ffffff;
    font-weight: 400;
}
@media screen and (max-width:1000px){
	.cuerpo_texto{
	font-size: 22px;
	line-height: 28px;
	}
}
@media screen and (max-width:700px){
	.cuerpo_texto{
	font-size: 20px;
	}
}
@media screen and (max-width:450px){
	.cuerpo_texto{
	font-size: 19px;
     }
}
/*Fin Texto y responsive*/

/*Estilos intro*/
.contenedor-texto{
	margin-top: 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
  }


  
details {
	list-style: none !important;
}
hr {
	border: none!important;
}
details summary::before {
    position: absolute;
    content: "Leer más";
    font-size: 28px;
    left: 40%;
	bottom: 0px;
	margin-bottom: 20px;
	margin-top: 0rem;
	color: #e69424; /*color*/
	font-weight: 600;
}
details[open] summary::before {
	position: absolute;
    content: "Leer menos";
	font-size: 28px;
	left: 40%;
	bottom: 0px;
	margin-bottom: 20px;
	margin-top: 0rem;
	color: #e69424; /*color*/
	font-weight: 600;
}
summary {
	margin-bottom: 20px;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
@media (min-width: 576px) {
	summary {
	  max-width: 540px;
	}
	
  }
  @media (min-width: 768px) {
	summary {
	  max-width: 720px;
	}
  }
  @media (min-width: 992px) {
	summary {
	  max-width: 960px;
	}
  }
  @media (min-width: 1200px) {
	summary {
	  max-width: 1140px;
	}
  }
/*Estilos intro*/
