@import url(https://fonts.google.com/specimen/Raleway);
@import url(https://fonts.google.com/specimen/Raleway);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reglas bÃ¡sicas entrega individual DDA 92350485 */

body {
    background-color: #fde9c3;
    color: #32153b;
    font-family: Raleway; sans-serif;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

html {
    height: -webkit-fill-available;
}

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

header, footer {
    background-color: #cc803c;
    padding: .7em;
    flex-grow: 0;
}

.perfil img {
    border-radius: 30%;
    width: 30vw;
    height: 30vw;
    max-width: 6em;
    max-height: 6em;
    border: .15em solid #35163A;
    box-shadow: 0 .31em .3em rgba(0, 0, 0, .35) inset, 0 .35em .5em rgba(0, 0, 0, .35);
    margin: 0 .1em;
}


.contenedor {
    margin: .3em auto;
    max-width: 50rem;
}

header .contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#isologo {
    display: block;
    width: 7em;
}

header ul {
    list-style: none;
    display: flex;
}

header ul li {
    margin: 0 0 .10em 0;
    display: flex;
}

header ul li a {
    border-radius: 20px;
    color: #32153b;
    background-color: #fde9c3;
    width: 100%;
    height: 100%;
    margin: 0 .2em;
    padding: 0 .4em;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li a:hover{
    background-color: #cc803c;
    color:  #6E1226;
}

main {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: .37em;
}

.perfil {
    margin: .10em auto;
    font-family: Raleway; sans-serif;
    text-align: center;
    max-width: 40em;
}

.materias {
    margin: .10em auto;
    padding: 2em;
    font-family: Raleway; sans-serif;
    text-align: center;
    max-width: 20em;
    background-color: white;
}

.perfil img {
    border-radius: 50%;
    width: 30vw;
    height: 30vw;
    max-width: 9em;
    max-height: 9em;
    border: .15em solid white;
    box-shadow: 0 .31em .3em rgba(0, 0, 0, .35) inset, 0 .35em .5em rgba(0, 0, 0, .35);
}
p, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.3em;
}

h1{
    color: #4e1f5c;
}

h4{
    color: #D68E09;
    text-align: center;
}
main ul {
    list-style: none;
}

li {
    text-align: center;
}

footer{
    background-color: #cc803c;
    display: block;
    color: D68E09;
    font-size: .7em;
    padding: .5em;
    text-align: center
}

