@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');


/* Estructura semántica */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 

body {background-color: rgb(28, 28, 28);
    font-family: "Red Hat Display", sans-serif;
}

img{width: 400px;
    margin: auto;

}

header img{width: 200px;
    border: 2px;
    border-style: solid;
    border-color: rgb(214, 196, 149);
    border-radius: 7rem;
    margin: 3rem;
}

header{color: rgb(243, 243, 243);
    width: auto;
    background-color: rgb(4, 4, 4);
}

.perfil{
    padding: 3rem;
    justify-content: center;
    text-align: center;
}

footer {background-color: rgb(215, 209, 193);
    text-align: center;
}

h1 {color: rgb(237, 237, 237);
    font-weight: 300;
}

section h2{
    color: rgb(237, 237, 237);
    text-align: center;
    font-weight: 400;
    padding: 1rem;
    padding-bottom: 2rem;
    padding-top: 4rem;
}

article {background-color: rgb(28, 28, 28); 
       
}




nav{
    background-color: aquamarine;
}



/* selectores del tipo class */

.articulo1 {
    color: rgb(243, 243, 243);
    margin: auto;
    padding: 4rem;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 5rem;
}

.articulo1-titulo {
    color: rgb(243, 243, 243);
    text-align: center;
    font-weight: 400;
    padding: 1rem;
    padding-bottom: 2rem;
}





.academia{
    padding: 3rem;
}

/* Estilo general del menú */
.menu {
    display: flex;
    justify-content: space-between; /* O puedes usar 'flex-end' para alinear a la derecha */
    background-color:rgb(215, 209, 193); /* Color de fondo del menú */
    padding: 10px;
  }

  .marca{
    margin: 0;
    padding: 1rem;
    color: rgb(0, 0, 0);
    font-weight: 200;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  
  /* Estilos para los enlaces */
  .menu ul {
    list-style: none; /* Quita los puntos de las listas */
    margin: 0;
    padding: 1rem;
    display: flex; /* Alinea los elementos de la lista en una fila horizontal */
  }
  
  .menu ul li {
    margin: 0 1.5rem; /* Espaciado entre los enlaces */
  }
  
  .menu ul li a {
    text-decoration: none; /* Quita el subrayado de los enlaces */
    color: rgb(13, 13, 13); /* Cambia el color del texto del enlace */
    font-size: 16px;
    font-weight: 600;
  }
  
  .menu ul li a:hover {
    color: #5c575e; /* Cambia el color al pasar el ratón por encima */
  }

  .cuadro{
    display: grid;
    grid-template-columns: auto auto auto auto;
    text-align: center;
    list-style: none;
    padding: 2rem;
  }

  .cuadro div h4{
    padding-bottom: 1rem;
  }

  .cuadro div ul{
    list-style: none;
  }
  

.equipo{
    display: grid;
    grid-template-columns: auto auto auto;
    text-align: center;
    padding-bottom: 7rem;
}

.equipo li{
    list-style: none;
}

.equipo li a{
    text-decoration: none; 
    color:#7e7880; 
    font-size: 16px;
    font-weight: 600;
}

.equipo li a:hover{
    color: #d1c5d5;
}

.equipo li a img{
    width: 200px;
    border: 2px;
    border-style: solid;
    border-color: rgb(214, 196, 149);
    border-radius: 7rem;
    margin: 3rem;
}

.infolegal{
    margin: auto;
    padding: 3rem;
}

