@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    list-style: none;   
} 

a {
    text-decoration: none;
}

body {
    background-color: #fdedd0;
    color: #2f061f;
    font-family: 'Funnel Display', sans-serif;
}

main {
    display: block;
    margin-top: 0px;
}

p {
    max-width: 69ch;
}

header {
    display: flex;
    width:100%;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 1rem;
    margin-top: 0;
    text-decoration: none;
    background-color: #fdedd0;
    border-bottom: #2f061f 1px solid;
}

header a {
    text-transform: uppercase;
    color: #2f061f;
}

header img {
    width: 61px;
    height: auto;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
    font-weight: 100;
}

.inicio :hover {
    color: #f194b4;
    transition: .3s;
    text-decoration: underline;
}

.plan :hover {
    color: #f194b4;
    transition: .3s;
    text-decoration: underline;
}

.mapa :hover {
    color: #f194b4;
    transition: .3s;
    text-decoration: underline;
}

.webapp :hover {
    color: #f194b4;
    transition: .3s;
    text-decoration: underline;
}


.banner {
    width: auto;
    height: 100vh;
    background-image: url("../imagenes/ratabanner.avif");
    background-repeat: no-repeat;  
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center; 
    text-align: center;
}

h1 {
    font-family: "UnifrakturMaguntia";
    font-size: 5.5rem;
    margin-bottom: 4rem;
}

.sobre-mi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 4rem;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.presentacion span {
    font-weight: 700;
}

.sobre-mi img {
    max-width: 280px;
    height: auto;
    justify-self: center;
}

.redes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 170px));
    gap: 1rem;
    padding-top: 1.5rem;
}

.red-social {
    display: grid;
    grid-template-columns: auto auto;
    border: 1px solid #2f061f;
    padding: .5rem 1rem;
    gap: .3rem;
}

.redes a {
    color: #2f061f;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.833rem;
    font-weight: 500;
    max-width: fit-content;
}

.red-social:hover {
    background-color:#f194b4;   
    transition: .5s; 
}

.redes a:hover {
    text-decoration: underline;
}

.redes img{
    width: 20px;
    height: auto;
}

.mis-mascotas {
    padding: 6rem 2rem;
    background-color: #f194b4;
    padding: 2rem 2rem;
}

.mis-mascotas h2 {
    font-size: 1.5rem;
    color: #fdedd0;
    display: block;
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-decoration: underline;
}

.contenedora-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 250px));
    margin: 1rem 1rem;
    justify-content: center;
}

.contenedora-galeria article {
    align-items: center;
    text-align: center;
}

.contenedora-galeria img {
    width: 100%;
    max-width: 180px;
    height: auto;
}

.contenedora-materias .quinto-anio ul li span {
    font-style: italic;
    color: #79585E;
}

.materias-aprobadas {
    padding: 4rem 4rem;
}

.materias-aprobadas h2 {
    font-size: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
    text-decoration: underline;
}

.materias-aprobadas ul {
    margin: 0;
    padding: 0;
}

.contenedora-materias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    justify-content: center;
    padding: 2rem 2rem;
    gap: 2rem;
}

.contenedora-materias h3 {
    margin-bottom: .5rem;
}

.contenedora-materias li {
    text-decoration: line-through #f194b4;
    text-decoration-thickness: 2px;;
    font-size: 0.917rem;
    padding-bottom: .2rem;
}

.materias-aprobadas li.en-curso {
    text-decoration: none;
}

.equipo {
    padding: 4rem 4rem;
}

.equipo h2 {
    font-size: 1.5rem;
    display: block;
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-decoration: underline;
}

.equipo img {
    display: block;
    max-width: 250px;
    height: auto;
    margin: 1.5rem auto;
}

.contenedora-nombres {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, auto));
    padding: 1rem 1rem;
    justify-content: center;
    gap: 3rem;
}

.contenedora-nombres h4 {
    display: block;
    text-align: center;
    margin-bottom: .5rem;
}

.contenedora-nombres article {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding: 1rem;
    border: #2f061f 1px solid;
    text-align: center;
}

.contenedora-nombres p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
}

.equipo .contenedora-nombres article a {
    display: inline-block;
    font-size: 0.833rem;
    margin-top: 1rem;
    padding: .5rem 1rem;
    border: #2f061f 1px solid;
    text-align: center;
    text-transform: uppercase;
    color: #2f061f;
}

.equipo .contenedora-nombres a:hover {
    background-color:#f194b4;
    text-decoration: underline;
    transition: .5s;
}

.comitente {
    padding: 4rem 6rem;
    background-color: #2f061f;
    color: #fdedd0;
}

.texto-comitente p {
    font-size: 1rem;
}

.texto-comitente p span {
    font-weight: 700;
}

.texto-comitente {
    max-width: 69ch;
    margin: 0 auto;
    text-align: left;
}

.comitente h2 {
    font-size: 1.5rem;
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-decoration: underline;
}

.comitente h3 {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.datos-academicos {
    padding: 4rem 4rem;
}

.datos-academicos h2 {
    font-size: 1.5rem;
    display: block;
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-decoration: underline;
}

.contenedora-datos-academicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, 320px);
    justify-content: center;
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.contenedora-datos-academicos>li {
    display: grid;
    grid-template-rows: 60px 1fr auto;
    border: #2f061f 1px solid;
    padding: 1rem;
}

.datos-academicos figure {
    gap: 1rem;
}

.datos-academicos h3 {
    margin-bottom: .5rem;
}

.datos-academicos span {
    font-weight: 500;
}

.datos-academicos h4 {
    margin-bottom: .5rem;
}

.datos-academicos p {
    font-size: 1rem;
    margin-bottom: .5rem;
}

.datos-academicos ul {
    margin: 0;
    padding: 0;
    padding-bottom: 1rem;
}

.datos-academicos a {
    margin-top: 1.5rem;
    text-transform: uppercase;
    border: 1px solid #2f061f;
    padding: .5rem 1rem;
    max-width: fit-content;
    color: #2f061f;
}

.datos-academicos a:hover {
    background-color:#f194b4;
    text-decoration: underline;   
    transition: .5s; 
}

.datos-academicos img {
    height: 60px;
    width: auto;
    padding-bottom: 2rem;
}

.propuestas-webapp {
    display: grid;
    grid-template-rows: auto auto;
    padding: 4rem;
    padding: 4rem 4rem;
}

.propuestas-webapp h2 {
    font-size: 1.5rem;
    display: block;
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-decoration: underline;
}

.propuestas-webapp img {
    width: 100%;
    max-width: 800px;
    height:auto;
    justify-self: center;
    padding: 2rem;
}

footer p {
    color:#fdedd0;
    background-color: #2f061f;
    padding: 2rem;
    max-width: 100%;
    text-align: center;
    font-weight: 100;
    font-size: 0.833rem;
}

