*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    scroll-behavior: smooth;
    scroll-padding: 13%;
}
header{
    width: 100%;
    height: 100px;
    background: #2c2a4a;
    justify-items: center;
    position: sticky;
    top: 0;
    box-shadow: 0px 0px 30px  0px rgba(0, 0, 0, 0.322);
}
.hdrContenido{
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hdrContenido h1{
    color: #dabfff;
}
.hdrContenido nav{
    width: auto;
    padding: 1%;
}
.hdrContenido nav a{
    text-decoration: none;
    color: rgb(122, 119, 167);
    transition: all 0.5s;
    padding: 10px;
    border-radius: 0.3rem;
}
.hdrContenido nav a:hover{
    color: #2c2a4a;
    background: #dabfff;
}
.contenido{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2%;
    text-align: justify;
    margin-bottom: 2%;
}
.contenido h1, h3, ol, b{
    color: #2c2a4a;
}
#informacion{
    font-size: 1.1rem;
}
#informacion ol{
    margin-left: 2%;
    width: 50%;
}
footer{
    width: 100%;
    height: 120px;
    background: #2c2a4a;
    justify-items: center;
}
footer .ftrContenido{
    width: 90%;
    height: 100%;
    align-content: center;
    color: #dabfff;
}
.ftrContenido h1{
    margin-bottom: 1%;
}
.ftrContenido ul{
    display: flex;
    list-style: none;
    justify-content: space-between;
}