@import url('https://fonts.googleapis.com/css2? family= Roboto:wght@300;400 & display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: black;
    font-family: 'Roboto', sans-serif;
}

/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    width: min(50rem, 100%);
    margin-inline: auto;
    padding: 0.5rem;
}

header nav ul {
    display: flex;
}

header nav ul li {
    padding: 0.3em;
    list-style: none;

}

header nav ul li:hover {
    color: white;
}

.logo img {
    width: 6em;
    background-color: yellow;
}

main {
    width: min(50rem, 100%);
    margin-inline: auto;
    padding: 0.5rem;
}

main div {
    display: flex;
    flex-direction: column;
    gap: 1em;
}



body p {
    color: white;
}


.aprobadas,
.cursando {
    padding: 0.5rem;
    border: solid 1px yellow;
    border-radius: 1em;
    margin-block-end: 3em;
}

#datosacademicos div {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    margin-block-end: 2em;
}

#datosacademicos h3,
p {
    margin-block-start: 4em;
}

#datosacademicos div p {
    display: flex;
}

#datosacademicos div img {
    width: 6rem;
    background-color: white;
}

.academicos1 img {
    margin-top: 4em;
    border: transparent;
    border-radius: 5em;
}

.academicos2 img {
    margin-top: 4em;
    margin-block: 2.5em;
    border: transparent;
}

.academicos3 img {
    margin-top: 4em;
    margin-block: 5em;
    border: transparent;
}


.formatos a {
    display: flex;
    color: yellow;
}


.estudiante {
    margin-block-end: 3em;
}

.estudiante img {
    width: 8rem;
    border: solid 2px yellow;
    border-radius: 0.5em;
    margin-block-start: 1.6em;
}

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

.integrantes {
    margin-top: 4em;
}

h1,
h2,
ul,
li {
    color: white;
}

h3 {
    color: yellow;
}

h2 {
    text-decoration: underline;
}



a {
    text-decoration: none;
}

h3 a {
    color: white;
}




/* FOOTER */


footer {
    margin-block-start: 2rem;
}



footer p {
    color: gray;
}

footer h5,
footer p {
    margin-block-start: 0;
}

footer nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: space-between;
}

footer nav ul li a {
    text-decoration: none;
    color: yellow;
}

.copyright p {
    font-size: .9em;
}


@media screen and (min-width:600px) {
    main div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 1em;
    }
}


@media screen and (min-width: 600px) {

    .aprobadas,
    .cursando {
        display: flex;
        padding: 0.5rem;
        border: solid 1px yellow;
    }
}

@media screen and (min-width: 600px) {

    footer, nav ul {
        color: black;
    }
}