body {
    margin: 0px;  
}
.wrapper {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
  }
   
  .wrapper > * {
    padding: 0px;
  }
.page-header {
	display: flex;
    justify-content: space-between;
    top: 0; 
	left: 0;
	flex-direction: row;
	height: 38px;
	align-items: center;
	margin-left: 0;
	margin-right: 0;
	width: 98%;
	padding-left: 1%;
	padding-right: 1%;
}
  .page-header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
   
  .page-header ul {
    display: flex;
    order: 1;
    width: 100%;
    margin-top: 15px;
  }
#imenu {
	float: right;
	display: inline;
	margin-top: 0px;
	width: 40px;
}
#menu {
	display: none;
	right: 0;
	margin-top: 340px;
	width: 180px;
	height: 300px;
	background:#1A1A1A;
	transition: height 1s;
	font-size: 16px;
	text-align: right;
	position: fixed;
	border-top-left-radius: 0.5em;
	border-bottom-left-radius: 0.5em;
	opacity: 0.9;
	line-height: 30px;
}
#menu ul {
    color: aliceblue;
    padding-right: 10px;
    text-align: right;
}
#player {
    display: flex;
    font-size: 40px;
    color: rgb(201, 30, 30);
    overflow: auto;
    bottom: 0;
	width: 100%;   
}
   
  @media screen and (min-width: 550px) {
    .page-header ul {
      width: auto;
      margin-top: 0;
    }
   
    .page-header .cta-contact {
      order: 1;
    }
  }
  /* variables */
:root {
    --main-white-color: white;
    --main-purple-color: #9e89b8;
  }
   
  .page-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    background: url("../media/main.webp") no-repeat center / cover;
    background-blend-mode: luminosity;
    color: var(--main-white-color);
	flex-grow: 1;
	margin-top: 15%;  
  }
.page-main h3 {
	font-size: 80%;
	visibility: hidden;
} 
  .page-main div {
    max-width: 500px;
  }
.page-about {
	display: flex;
	margin-top: 0%;
	padding-top: 1%;
	width: 80%;
	margin-left: 10%;
	}
.page-trabajo {
	display: flex;
	flex-direction: column;
    justify-content: space-between; /* Distribuye los elementos de manera equilibrada */
    align-items: center; /* Alinea los elementos verticalmente al centro */
    padding-top: 5%;
    width: 100%;
    margin-left: 0%;
    background: #FFFFFF;
    min-height: 30vh;
}
.cuadro1 {
    display: flex; /* Activa flexbox */
    flex-direction: column; /* Alinea los elementos en una columna */
	justify-content: center;
	width: 60%; /* Ajusta el tamaño según tus necesidades */
    aspect-ratio: 1; /* Hace que los elementos sean cuadrados */
    background: url("../media/ninos.jpg") no-repeat center / cover;
	background-color: #000000; /* Color de fondo de los cuadros */
	align-items: center; /* Centra los elementos horizontalmente */
	color:antiquewhite;
	margin-top: 0%;
}
.cuadro2 {
    display: flex; /* Activa flexbox */
    flex-direction: column; /* Alinea los elementos en una columna */
	justify-content: center;
	width: 60%; /* Ajusta el tamaño según tus necesidades */
    aspect-ratio: 1; /* Hace que los elementos sean cuadrados */
    background: url("../media/jovenes.jpg") no-repeat center / cover;
	background-color: #000000; /* Color de fondo de los cuadros */
	align-items: center; /* Centra los elementos horizontalmente */
	color:antiquewhite;
	margin-top: 6%;
}
.cuadro3 {
    display: flex; /* Activa flexbox */
    flex-direction: column; /* Alinea los elementos en una columna */
	justify-content: center;
	width: 60%; /* Ajusta el tamaño según tus necesidades */
    aspect-ratio: 1; /* Hace que los elementos sean cuadrados */
    background: url("../media/mujeres.jpg") no-repeat center / cover;
	background-color: #000000; /* Color de fondo de los cuadros */
	align-items: center; /* Centra los elementos horizontalmente */
	color:antiquewhite;
	margin-top: 6%;
}
.hover-grow {
    transition: transform 0.3s ease; /* Añade una transición suave */
}

.hover-grow:hover {
    transform: scale(1.1); /* Escala el texto a 110% de su tamaño original */
}
.page-footer {
    display: flex;
    flex-direction: column;
	align-items: center;
  }
.page-footer ul {
    display: flex;
	flex-direction: row;  
    font-size: 1.5rem;
	margin-bottom: 5px;
  }
.page-footer a {
    display: flex;
	margin-right: 20%;
  } 