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;
    height: 50vh;
    background: var(--main-purple-color) 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 div {
    max-width: 500px;
  }
.page-about {
	display: flex;
	margin-top: 0%;
	padding-top: 0%;
	width: 80%;
	margin-left: 10%;
	}
.page-proposito {
	display: flex;
    justify-content: space-between; /* Distribuye los elementos de manera equilibrada */
    align-items: center;
	flex-direction: column;
	width: 100%;
	height: auto;
}
.page-proposito h1 {
	font-size: 100%;
}
.page-proposito h2 {
	font-size: 60%;
	word-spacing: 30px;
}
.page-trabajo {
	display: flex;
    flex-direction: column; /* Alinea los elementos en una columna vertical */
    justify-content: center; /* Centra los elementos verticalmente dentro del contenedor */
    align-items: center; /* Centra los elementos horizontalmente dentro del contenedor */
    margin-top: 5%;
    width: 80%;
    margin-left: 10%;
    background: #FFFFFF;
    
}
.cuadro {
    display: flex; /* Activa flexbox en el cuadro */
    flex-direction: column; /* Alinea el contenido en una columna vertical */
    justify-content: center; /* Centra el contenido verticalmente dentro del cuadro */
    align-items: center; /* Centra el contenido horizontalmente dentro del cuadro */
    width: 100%; /* Ajusta el tamaño según tus necesidades */
    max-width: 50%; /* Ajusta el tamaño máximo del cuadro si es necesario */
    aspect-ratio: 1; /* Hace que los cuadros sean cuadrados */
    background-color: antiquewhite; /* Color de fondo de los cuadros */
    border-radius: 1em; /* Bordes redondeados */
    margin-bottom: 20px; /* Espacio entre los cuadros */
}
.cuadro span {
	font-size: 40px;
	}
.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%;
  } 