*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    margin: center center;
    font-family: georgia;
}
.espacio-top{
    padding-top: 1.5rem;
}
.espcolor{
    background-color: #0080f852;
}
main div div h2 {
    text-align: center;
}
.center{
    text-align: center;
}

.contenedor{
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
}
main div h1{
    text-align: center;
    padding-top: 2.5rem;
    color: #ffff;
}
main div{
    color: #ffff;
    font-size: 1.2rem;
    line-height: 1.6em;
}
.footer{
    padding: 4rem 0;
    text-align: center;
}
footer{
    padding-top: 50px;
    background-color: rgb(32, 44, 110);
    color: white;
}
.header{
    background-color: rgb(71, 71, 71);
    color: white;
    padding: 1rem 0;
}
header div nav ul li a{
    text-decoration: none;
    color: rgb(255, 255, 255);
}
main{
    background: url(./fondo.png);
    background-size: cover;
}
.desmadresup, .linear{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.linear{
    display: flex;
    justify-content: center;
}
.izq{
    display: flex;
    justify-content: right;
    padding-right: 4rem;
}
.krlitos{
    text-decoration: none;
    color: white;
}
.navegation ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.navegation ul li {
    display: inline-block;
}
.navegation ul li a{
    display: block;
    padding: 0.5rem 1rem;
}
.navegation ul li a:hover{
    cursor: pointer;
}
.logo{
    width: 100px;
    height: auto;
}
footer div p a{
    text-decoration: none;
    color: white;
    text-align: center;
}
.a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

/*LOS BOTONES*/
button {
    --color: #0080f8;
    font-family: inherit;
    display: inline-block;
    width: 8em;
    height: 2.6em;
    line-height: 2.5em;
    margin: 5px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color);
    transition: color .3s;
    z-index: 1;
    font-size: 19px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--color);
}
   
button:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--color);
    height: 150px;
    width: 200px;
    border-radius: 50%;
}
   
button:hover {
    color: rgb(255, 255, 255);
    cursor: pointer;
}
   
button:before {
    top: 100%;
    left: 100%;
    transition: all .8s;
}
   
button:hover:before {
    top: -30px;
    left: -30px;
}
/*FIN DE LOS BOTONES*/