<meta name="viewport" content='width=device-width, initial-scale=1'>


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

}


body {

    font-family: 'Roboto', sans-serif;
    background-color: #d5d5d5;
}

header {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 10vh;
    width: auto;

}

main {
    margin: 1em;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    flex-direction: column;
    min-height: 50vh;
    width: auto;
    
}

footer {
    display: flex;
    justify-content: center;
    min-height: 10vh;
    width: 80vw;
    
   
    
}

h1 {
    color: black;
    background-color: antiquewhite;
    width: auto;
    text-align: center;
    font-size: 3em;
    
}

h2 {
    font-size: 2em;
}

.info {
    display: flex;
    flex-direction: column;
    margin: 1em;
    padding: 1em;
    width: 70vw;
    
}

span {
    color: black;
    font-style: italic;
    text-decoration: none;
    font-weight: bold;
    
}

header nav {
    display: flex;
    background-color: cadetblue;
    height: 3em;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

a {
    color: floralwhite;

}

header nav ul {
    height: 3em;
    display: flex;
    align-items: center;
}

header ul li {
    display: block;
    width: 12vw;
    max-width: 100%;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    text-align: center;
}

header nav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8em;
    
}

main nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: space-between;
    text-decoration: none;
    list-style: none;

}

.pertenencia ul {
    display: flex;
    flex-direction: row;
    
}

.pertenencia ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 9em;
    margin: 1em;
    padding: 2em;
    background-color: #ffffff;

}

.pantallas ul {
    display: flex;
    flex-direction: column;
    margin: 3em;
    padding: 1em;
    
}

.pantallas ul li a {
    text-decoration: none;
}

.foto {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    width: 50vw;
    margin: auto;
    padding: 1em auto;

}

.link {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10%;
    height: 3em;
    color: aliceblue;
    text-align: center;
    background-color: coral;
    margin-bottom: 0.5em;
    
}

main .foto img {  
    max-width: 100%; 
    height: auto;
    border-radius: 50%;
    display: flex;
    align-content: center;
    
}

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

p {
    font-size: 1em;

}

.textofooter {
    font-size: .8em;
    width: 70vw;
    
}



/* reglas para flexbox */

