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


body {
    background-color: cadetblue;
}

header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 1em;
}


nav ul li {
    border-radius: 2%;
}


nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: cornflowerblue;
    margin-top: 1em;
    margin-bottom: 1em;
    
}

#foto_de_cara {
    width: 40%;
    height: auto;
    border-radius: 50%;
    align-items: center;
    margin-left: 30%;
}

nav ul li a{
    text-decoration: none;
    color: azure;
    font-family: serif;
    
}

main {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-family: sans-serif;
}


h1 {
 font-family: "Black Ops One";
}

h3 {
    text-decoration: underline;
    margin-top: 1em;
}

h4 {
    margin-top: 1em;
}

#rotulos_del_equipo ul li a {
    font-family: "Black Ops One";
    text-decoration: none;
}










footer {
    background-color: lightblue;
    color: black;
    
}