html, body {
  height: 100%;
  margin: 0;
}

/* Estilos generales */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Asegura que el body tenga al menos la altura de la viewport */
}

.container {
  flex: 1; /* Permite que el contenido principal se expanda para ocupar todo el espacio disponible */
  min-height: 100vh;
  margin-right: 5%;
  margin-left: 5%;
}

footer {
  flex-shrink: 0;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.select-blog, .selected {
	color:#FF9500; /* Tono amarillo mostaza de la paleta*/
	text-decoration: underline;
}


svg{
	margin-top: 8vh;
	z-index: 1;
}
.content__all{
	z-index: 2;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  	justify-content: space-between;
}

.content__info__blog{
	display: flex;
	flex-direction: column;
	width: 30%;
	height: 40%;
	align-items: center;
	justify-content: center;
	margin-left: 2%;
	overflow-wrap: break-word;
}

.content__info__blog:firts-child{
	margin-left: 0;
}
.content__info__blog h2{
	background-color: #0C2B42; /*Color azul oscuro*/
	color: #FF9500; /* Tono amarillo mostaza de la paleta*/
	font-weight: bold;
	padding: 2%;
	text-align: right;
	margin-bottom: 0;
	border-radius: 4px;
	font-size: 1.5vw;

}
.content__info__blog img{
	width: 300px;
	height: 250px;
	margin-top:0;
	border-radius: 8px;

}

.content__info__blog h3{
	color: #00436D; /* azul claro de la paleta */
	font-weight: bold;
	text-align: center;
	font-size: 1.5vw;
}

.content__info__blog p{
	text-align: justify;
	font-family: montserrat;
	font-size: 1.2vw;
	margin-top: 0;
	margin-left: 2%;
	shape-margin: 2%;
}

@media only screen and (min-width: 851px) and (max-width: 1050px) {

.content__info__blog{
	width: 40%;
	height: 40%;
}

.content__info__blog h2{
}
.content__info__blog img{
	width: 250px;
	height: 250px;
}

.content__info__blog h3{
	font-size: 1.8vw;
}

.content__info__blog p{
	font-size: 1.5vw;
}


}

@media (max-width: 850px) {

.content__info__blog{
	width: 40%;
	height: 40%;
	margin-left: 5%;
	margin-right: 5%;
}

.content__info__blog h2{
	font-size: 2vw;
}
.content__info__blog img{
	width: 150px;
	height: 150px;
}

.content__info__blog h3{
	font-size: 2.5vw;
}

.content__info__blog p{
	font-size: 2vw;
}



}