/* Reglas generales */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

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

a{
    text-decoration: none;
}

ul,
ol{
    list-style: none;
}

p,
ul,
li{
    text-wrap: pretty;
}

h1,
h2,
h3,
h4{
    text-wrap: balance;
}

body{
    margin: 0;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    min-height: 100dvh;
    background-color: #948ae0;
    color: white;
    margin: 0;
}

main{
    flex-grow: 1;
    margin-bottom: 20px;
    padding: 1rem;
    max-width: 60rem;
    margin-inline: auto;
}

/* Encabezado */
header{
    background-color:#6257b8;
    color: white;
    width: 100%;
    padding: .5em;
}

header div img{
    margin: auto;
    display: block;
    width: 150px;
    height: 80px;
}

header ul{
    list-style: none;
    font-size: 1em;
    text-align: center;
    display: block;
    padding: 2px;
}

header ul a{
    text-decoration: none;
    color: white;
    background-color: #064789;
    padding: 8px;
    border-radius: 8px;
}

nav ul li{
    display: inline-block;
}

nav a:hover{
    color: #6257b8;
    background-color: whitesmoke;
    transition: .3s;
}

/* Datos */

.foto-lucia{
    text-align: center;
}

img.lucia{
    border-radius: 20px;
    border: #6257b8 8px solid;
    width: 250px;
}

p.parrafo{
    text-align: center;
}

h3.materias{
    background-color: #08A4BD;
    display: inline-block;
    padding: 8px;
    margin-bottom: 0;
    width: 200px;
}

.materias-cursadas{
    display: flex;
    gap: 3em;
    justify-content: center;
}

img.logo-behance{
    max-width: 150px; 
    max-height: 150px;
}

img.logo-behance:hover{
    cursor: pointer;
}

section#redes{
    text-align: center;
}

/* Datos académicos */

li.materias{
    font-weight: 700;
}

.datos-academicos ul{
    list-style: none;
    padding-left: 0;
    color: white;
    font-size: 14px;
}

.datos-academicos div{
    padding: 10px;
}

.datos-academicos img{
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 10px;
    border: 1px solid white;
}

.datos-academicos{
    display: flex;
    gap: 1em;
    justify-content: center;
}

/* Equipo Vm33 */

.equipo img{
    display: block;
    margin-block-end: 1rem;
}

.equipo{
    text-align: center;
    background-color: #2bc2da;
    padding: 5px;
    border-radius: 30px;
    max-width: 90%;
}

.equipo h2{
    margin-bottom: 0;
    margin-top: 5px;
}

.equipo h3{
    margin-top: 0;
}

.equipo ol{
    padding: 0;
    margin: 0;
}

.equipo li{
    display: inline-block;
    padding: 10px;
}

/* Botón saber más */
#equipo a{
    text-decoration: none;
    color: white;
    background-color:#064789;
    padding: 10px;
    border-radius: 20px;
}

#equipo a:hover{
    color: #6257b8;
    background-color: whitesmoke;
    transition: .3s;
}


/*Pie de página*/

footer div{
    background-color:white;
    padding: 8px;
}

footer div img{
    width: 150px;
    margin: auto;
    display: block;
    padding-top: 5px;
}

footer div p{
    color:#064789;
    text-align: center;
}

/* Página Responsive */

@media(min-width:600px){
    header ul{
        font-size: 1.2em;
    }
    footer div p{
        font-size: 1em;
    }
}

/* Tablet */
@media screen and (min-width:768px) {
    header ul{
        font-size: 1.4em;
    }
}

/* Compu */
@media screen and (min-width:992px) {
    header ul{
        font-size: 1.5em;
    }
}

