<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
    box-sizing: border-box;
    margin:0;
    padding:0;
    border: 0;

}
body {
    font-family: Oswald, sans-serif;
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr;
    color: rgb(255, 255, 255);
    background-color: rgb(58, 12, 163);
  }
  header, footer {
    background-color: #f72585;
    color: white;
    padding: 1rem
  }
#logo{
    display: block;
    border-radius: .5rem;
    width: 6rem;
    padding: .25rem .5rem;
}
contenedor{
    margin-inline: auto;
    padding: 1rem;
    max-width: 65rem;
}
img{
    max-width: 100%;
}
header .contenedor{
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
header nav ul {
    display: flex;
    gap: .25rem;
    flex-wrap: wrap;
    margin-block: 0;
    text-wrap: pretty;
    list-style: none;
    padding: 0;
}
  header nav a {
    color: rgb(243, 243, 243);
    background-color: rgb(67, 97, 238);
    display: block;
    width: 5em;
    padding-block: .25em .5em;
    border-radius: 10px ;
    text-align: center;
  }
  a{
    text-decoration: none;
    font-weight: bold;
  }
  .contenedor{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(10rem, 100%), 1fr));
  gap: 10px;
  }
.botones{
    background-color:#f72585;
    border-radius: 1em; 
    border: 1px solid #ffbdc5;
    box-shadow: .20rem .20rem #ffffff;
    padding: 1em;
    margin: .5em;
    width: 17em;
}

main{
    width: min(65rem, calc(100% - 3rem));
    margin-inline: auto ;
}
.titulos{
    background-color: #e8657d ;
    padding-left: .5em;
    color: #f9f1da;
    border-radius: .2em; 
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.subtitulos{
    border-block-end: solid 3px #e8657d;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}
.borde1{
    background-color: hsl(349, 74%, 65%, .2);
    border-radius: 1em; 
    border: 2px solid #e8657d;
    padding: 0.5em;

    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 1rem;
    align-items: center;
}
.borde2{
    background-color: hsl(197, 56%, 52%, .2);
    border-radius: 1em; 
    border: 2px solid #41a4ca;
    padding: 0.5em;

    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 1rem;
    align-items: center;
}
.borde3{
    background-color: hsl(48, 100%, 67%, .2);
    border-radius: 1em; 
    border: 2px solid #ffde59;
    padding: 0.5em;

    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 1rem;
    align-items: center;
}
#presentacion{
    display: flex;
    gap: 1em;
    align-items: center;
    flex-direction: column;
}
#imgperfil{
    display: flex;
    margin: 2rem 0.8rem;
    height: 300px;
    border-radius: 10% 10%;
    border: 1px solid #000f52;
    padding: 5px;
   }
h1{
    font-size: 2em;
    border-block-end: solid 3px #e8657d;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}
.sobremi{
    display: grid;
    gap: 1em;
    margin-top: .5rem;
    margin-bottom: .5rem;
}
.botones a {
    color: white !important;
  }
  .botones a:hover {
    color: #000000 !important;
  }
h5 {
    color: #000000;
}
.contenedordatosacademicos{
    display: flex;             
    flex-wrap: wrap;       
    gap: 5px;
    margin-top: 10%;
    margin-bottom: 10%;
  }
  hr {
    border: none;
    height: 1px;             
    background-color: #74a0bd;       
  }
  .logosacademicos{
    background-color: #ffffff;
    width: 100px;
    height: 100px;
    border-radius: 10% 10%;
    border: 1px solid #ff00c8;
    padding: 5px;
  }  
  .textodatosacademicos{
    li {
      font-family: segoe UI;
      font-size: 90%;
      color: #969bb3;
   }
}
.textodatosacademicos{
  font-size: 14pt;
}
.contenedordatosacademicos{                    
  gap: 3em;
  margin-top: 5%;
  margin-bottom: 5%;
}
.logosacademicos{
  width: 120px;
  height: 120px;
} 
.textodatosacademicos{
  font-size: 15pt;
}
.prototipos{
display: flex;
width:600px;
height: 430px;
}
.prototipos img{
width: 0px;
flex-grow: 1;
object-fit: cover;
opacity: .8;
transition: .5s ease;
}
.prototipos img:hover{
cursor: crosshair;
width: 300px;
opacity:1;
filter: contrast(120%);
}
.prototiposestaticos{
  display: flex;
  width:600px;
  height: 430px;
  }
</pre></body></html>