@charset "utf-8";

*{
    box-sizing: border-box;
}

body {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    color:black;
    background-color:hsl(298, 67%, 93%);
    min-height: 100dvh;
}

img{
    width: 15em;
    border-radius: 3px;
}
p,
  li {
    /* se evitan "viudas" y "huerfanos" */
    text-wrap: pretty;
  }
a {
    text-decoration: none;
}

ul,
ol {
  /* elimina bullets, numeros etc. */
  list-style: none;

  /* retira el relleno izquierdo predeterminado */
  padding: 0;
}

header,
footer {
    background-color:rgb(244, 143, 242);
}
h1,
h2,
h3,
p{
    margin-bottom: 1em;
    text-wrap:balance ;
    text-align: left;
    
}

header .inicio {  
    min-width: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.inicio{
    display: flex;
    justify-content: center;
    max-width: 75rem;
    margin: 0 auto;
    padding: 10px;
}

.inicio img {
    display: block;
    width: 8rem;
}

header nav ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 1rem;
}

header nav ul li a{
    background-color: blueviolet;
    color: aliceblue;
    padding: .25em .5em;
    border-radius:.25em;
    text-align: center;
    text-transform: uppercase;
}

header img {
    display: block;
    width: 8rem;}


.presentacion {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    margin: 0 auto;
    padding: 1rem;
    margin-top: 3rem;
    background-color: hsl(298, 86%, 88%);
    border-radius: .25em;
    border: solid blueviolet;
    align-self:center;
    align-items: center;

}



h1{ 
    text-transform: uppercase;
    color: blueviolet;}

.presentacion img {
    width: 10rem;
    border: solid blueviolet;
}
.equipo {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 80%;
    margin: 0 auto;
    margin-top: 3rem;
    background-color:  hsl(298, 86%, 88%);
    border-radius: .25em;
    border: solid blueviolet;
    text-align: center;

}
.equipo ul li a {
    display: flex;
        flex-direction: column;
        margin: 1rem 1rem 1rem; 
        color:white;
        border-radius: .25em;
       background-color:  blueviolet;
        align-self:center;
        align-items: center;
        padding: .25em .5em;
}

h2 { color: blueviolet; 
text-align: center;}
h3 { color: blueviolet; 
    text-align: center;
font-weight: 400;
text-decoration:overline}

.materias {
    display:flex;
    flex-direction: column;
    align-items: center;
     max-width: 80%;
     margin: 0 auto;
     padding: 1rem;
     gap: 1rem;
     margin-top: 3rem;
     background-color: hsl(298, 86%, 88%);
     border-radius: .25em;
     border: solid blueviolet;}

.materias img {
        width: 10rem;
        border: solid blueviolet;
    }
    .boceto {    display:flex;
        flex-direction: column;
        align-items: center;
         max-width: 80%;
         margin: 0 auto;
         padding: 1rem;
         gap: 1rem;
         margin-top: 3rem;
         background-color: hsl(298, 86%, 88%);
         border-radius: .25em;
         border: solid blueviolet;
    }
    .boceto div ul a{
        display: flex;
        flex-direction: column;
        margin: 1rem 1rem 1rem; 
        color:white;
        border-radius: .25em;
       background-color:  blueviolet;
        align-self:center;
        align-items: center;
        padding: .25em .5em;

    }
.comitente {
    display:flex;
    flex-direction: column;
    align-items: center;
     max-width: 80%;
     margin: 0 auto;
     padding: 1rem;
     gap: 1rem;
     margin-top: 3rem;
     background-color: hsl(298, 86%, 88%);
     border-radius: .25em;
     border: solid blueviolet;
}

.comitente ul li {
    text-align: center;
}

footer p {
    text-align: center;
    padding-top: 2%;
    padding-bottom: 2%;
    color: blueviolet;
    }