@charset "utf=8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #dfdcc6;
}

header {
    background-color: #6e8b73;
    color: #fff;
    padding: 20px 0;
}

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

.logo img {
    height: 50px;
}

header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header li {
    margin: 0 10px;
}

header a {
    color: #000000;
    text-decoration: none;
}

.contenedora {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

.estudiante {
    display: flex;
    align-items: center;
}

.imagen-estudiante img {
    
    height: 150px;
    width: 150px;
    margin-right: 20px;
}

.info h1 {
    margin: 0;
}

.info p {
    margin: 5px 0 0;
}

.materias {
    margin-top: 20px;
}

.historia-academica {
    display: flex;
    justify-content: space-between;
}

.aprobadas, .encurso {
    width: 45%;
}

h5 {
    text-align: center;
    color: #000000;
}

h3 {
 margin-top: 1rem;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    background-color: #f4fced;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

.compañeras p a {
    margin: 1rem;
    text-decoration: none;
    color: #071f0c;
}

.compañeras {
    margin: 1rem;
}

.datos-academicos .contenedor-academico {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.item-academico img {
    height: auto;
    width: 150px;
    margin-right: 20px;
}

footer {
    background-color: #071f0c;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

h2 {
    margin: 1rem;
}

@media (max-width: 768px) {
    .contenedora {
        width: 90%;
        padding: 10px;
    }

    .historia-academica {
        flex-direction: column;
        align-items: center;
    }

    .aprobadas, .encurso {
        width: 100%;
        margin-bottom: 20px;
    }

    .estudiante {
        flex-direction: column;
        align-items: center;
    }

    .imagen-estudiante img {
        margin: 0 0 20px 0;
    }
}

@media (max-width: 480px) {
    header {
        text-align: center;
        padding: 10px 0;
    }

    .contenedor-header {
        flex-direction: column;
        align-items: center;
    }

    header ul {
        flex-direction: column;
        margin-top: 10px;
    }

    header li {
        margin: 5px 0;
    }

    .contenedora {
        width: 95%;
        padding: 10px;
    }

    .historia-academica {
        flex-direction: column;
    }

    .aprobadas, .encurso {
        width: 100%;
        margin-bottom: 20px;
    }

    .estudiante {
        flex-direction: column;
        align-items: center;
    }

    .imagen-estudiante img {
        margin: 0 0 20px 0;
    }

    footer {
        font-size: 14px;
    }
}