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

body {font-family: tajawal, sans-serif;
      background-color: azure;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
}

img {max-width: 100%;
     height: auto;
}

footer {background-color: lightskyblue;
                padding: 1em;
                flex-grow: 0;
}

header {height: 3em;
        display: flex; 
        justify-content: center;
}

nav ul {list-style: none;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        background-color: lightblue;
        border-radius: 1em;
        padding: .5em;
        margin: 1em;
}

nav ul li {width: 2em;
           height: 1em;
           display: flex;
           align-items: center;
           align-content: center;
           justify-content: center;
}

main {flex-grow: 1;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
}

main div {background-color: lightskyblue;
          display: flex;
          flex-direction: column;
          justify-content: center;
          flex-wrap: wrap;
          padding: 1em;
          margin: 1em;
}

h1 {display: flex;
    justify-content: center;
    color: darkblue;
    text-decoration-line: underline;
    margin-bottom: .5em;
    text-align: center;
}

main div img {margin-bottom: 1.25em;
}

main div p {text-align: center;
}

section {display: flex;
         flex-direction: column;
         background-color: white;
         margin: 1em;
}

.integrantes {display: flex;
              justify-content: space-around;
              padding: 1em;
}

section h2 {display: flex;
            justify-content: center;
            align-content: center;
            background-color: darkblue;
            color: white;   
            padding: .5em;  
            border-radius: .5em;
            margin: 1em;
}

section ul li {list-style: none;
                width: 100%;
                height: 100%;
                background-color: lightskyblue;
                width: 5em;
                border-radius: 1em;
                display: flex;
                justify-content: center;
                align-items: center;
}

.otros a {
    color: white;
    font-family: "nunito", sans-serif;
    text-decoration: none;
}

.otros {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
}

.otros div {
    display: flex;
    flex-direction: column;
    padding: 1em;
}

.otros div p {
    background-color: #1aa2ad;
    padding: .5em;
    margin: .5em;
    border-radius: 1em;
}

aside {margin: 1em;
}

aside ul {list-style: none;
}

aside ul li {margin-bottom: 1em;
}

.datos {font-weight: bold;
        text-decoration: underline;
}

@media ( min-width: 40em ) {

    main {max-width: 50%;
              display: flex;
              flex-direction: column;
              justify-content: center;
              margin: auto;
    }
    
    aside {display: flex;
            justify-content: center;
            text-align: center;
    }
   
    
}
