body {
  font-family: "Arial", sans-serif;
}

ul {
  list-style: none;   /* saca los bullets */
  padding: 0;         /* opcional: elimina el padding que pone el navegador */
  margin: 0;          /* opcional */
}

a {
  text-decoration: none; /* saca el subrayado */
  color: inherit;        /* opcional: hereda el color del texto padre */
}



.header-bg{
    background-color: #d7ff31;
    text-decoration: none;
    padding-bottom: 30px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    
    flex-wrap: wrap;
}

.img-style{
    width: 200px;
}

.foto-perfil {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.navbar-list {
    display: flex;
    width: 280px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-right: 120px;
}

.navbar-list li a:hover{
    text-decoration: underline;
}

.inicio-style{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 500px;
}

.perfil{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.materias{
    display: flex;
    flex-direction: column;
    color: black;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.materias-grid{
    display: flex;
    flex-direction: row;
    color: black;
    justify-content: space-between;
    align-items: top;
    height: 300px;
    width: 1200px;
}

.cards{
    background-color: #c9c9c9;
    color: #000000;
    width: 400px;
    margin: 10px;

    padding: 10px 20px;
    border-radius: 16px;
    font-size: 14px;
}

.cards:hover{
    background-color: #d7ff31;
    color: #000000;
}



.nuestro-equipo{
    display: flex;
    flex-direction: column;
    background-color: #333333;
    color: white;
    justify-content: center;
    align-items: center;
    height: 240px;
}

.btn-perfil {
    background-color: #d7ff31;
    color: #000000;
    padding: 10px 22px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.btn-perfil:hover{
    background-color: #c51cdf; /* tono más oscuro al pasar el mouse */
    transform: scale(1.05); /* lo agranda un poquito */
}

.btn-integrantes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

.footer-bg{
    background-color: #d0d0d0;
}

.footer{
    font-size: 14px;
    padding: 20px;

    display: flex;
    flex-direction: row;
    justify-content: center;
}


.pagina {
    background-color: #87cefa;
    max-width: 70rem;
    margin: auto;
}