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;
}

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

.img-style{
    width: 200px;
}

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

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

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

.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-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;
}