/*Hoja de estilos*/

/*Body*/
body{
    background: linear-gradient( cyan, magenta);
    margin: 0rem; 
    padding: 0rem;
    width: 100%;
    background-size: cover;
} 

/*Barra Menu*/

.menu{
    background-color: black;
    background-size: cover;
    width: 100%;
    margin: auto;
    overflow:hidden;
    position: absolute;
    top: 0;
}

header {
    background: black;
    width: 100%;
    position: fixed;
}

nav {
    float: right; 
    padding-right: 30px;
 
}
nav ul {
    list-style: none;
    overflow: hidden; 
}
nav ul li {
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}
nav ul li a {
    display: block; 
    padding: 10px;
    color: #fff;
    text-decoration: none;
}
nav ul li:hover {
    background: #A9F5F2;
    color:black;
}


/*Imagen*/

.foto{
    width: 90%;
}
/*Textos*/
.perfil{
    display: flex;
    flex-direction: row;
    justify-content: center;
    
    
    overflow: auto;
}

.info-mat{
    padding: 1.5rem;
}


h3{
    font-family: 'Montserrat', sans-serif;
    text-decoration-line: underline;
}

p{
    font-family: 'Zilla Slab', serif;
    margin-top: -1rem
}


/*Listado*/
ul{list-style: none}

/*Imagnes*/

/*Header*/
.nombre{
    margin-top: 6.5rem;
    margin-left: 1rem;
}
h1{
    
    font-family: 'Montserrat', sans-serif; 
    color:black;
    position: relative
}

/*Footer*/
footer{
    font-style: italic; 
    background-color: black; 
    color: aliceblue;
    shape-margin: auto;
    margin-top:2rem;
    padding:1px 1px 1px 10px;
}

/*__responsive- menos de 600__*/
@media screen and (max-width: 600px){
    .perfil{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -1rem;
    margin-left: 1rem;
    overflow: auto;
}
    .foto{
        width: 60%;
}
    
}

/*__responsive- menos de 450__*/
@media screen and (max-width: 450px){
    .perfil{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -1rem;
    margin-left: 1rem;
    overflow: auto;
}
    .foto{
        width: 90%;
}
    
}

/*__responsive- menos de 400__*/
@media screen and (max-width: 400px){
    .perfil{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -1rem;
    margin-left: 1rem;
    overflow: auto;
}
    .foto{
        width: 80%;
}
    
}
