/* Valores estándar*/
html{
    font-size: 62.5%;
    box-sizing: border-box;
}
*,*:before,*:after {
    box-sizing: inherit;
}
body{
    font-size: 1.6rem;
    font-family: 'Lora', sans-serif;
}
a{
    text-decoration: none;
    font-weight: 800;
    color: black;
}
hr{
    height:0.1rem;
    border-width:0;
    background-color:rgb(81, 0, 255);
    width: 50%;
}
@media (max-width:50rem){
    hr{
        width: 85%;
    }
}
h2{
    color: rgb(81, 0, 255);
}
img{
    display: block;
}

/* Titulo */
h1.title{
    font-size: 5rem;
    text-align: center;
}
span.sillas{
    color: rgb(81, 0, 255);
}
/* NAVEGACIÓN */
nav{
    display: flex;
    justify-content: space-around;
    margin: 2rem 25%;
}
@media (max-width:50rem){
    nav{
        display: flex;
        justify-content: space-around;
        margin: 2rem 5%;
    }
}

/* FOOTER*/
footer{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 2rem 2rem;
    align-items: center;
}
div.box{
    line-height: 2.5rem;
}
img.footer{
    height: 20rem;
    display: block;
}
div.links{
    display: flex;
    justify-content: space-between;
    gap: 6rem;
    margin: 0 10rem 0 0;
}
div.footercontainer{
    display: flex;
    flex-direction: column;
}
@media (max-width: 50rem){
    footer{
        display: flex;
        justify-content: space-between;
        margin: 2rem 2rem;
        align-items: center;
        gap: 1rem;
    }
    div.links{
        flex-direction: column;
        gap: 1rem;
        margin: 0;
        font-size: 1.2rem;
    }
    h2.footer{
        font-size: 2rem;
    }
}
hr.footer{
    width: 100%;
}

/*MAIN*/
main{
    text-align: center;
}
div.div-prods{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    flex-basis: 30%;
}
div.box-prod{
    background-color: rgb(237, 228, 255);
    padding: 2rem;
    border: 2px solid rgb(81, 0, 255);
    border-radius: 2.5rem;
}
div.box-prod a{
    color: rgb(255, 255, 255);
    background-color: rgb(81, 0, 255);
    border-radius: .5rem;
    padding: 0.5rem;
}
img.silla, img.sillon, img.biblioteca{
    border-radius: 1.5rem;
}
img.silla, img.sillon{
    height: 20rem;
}
img.biblioteca{
    height: 18rem;
    margin-bottom: 4rem;
}
@media (max-width: 50rem){
    div.div-prods{
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 1rem;
        flex-basis: 10%;
    }
    img.silla, img.sillon, img.biblioteca{
        height: 12rem;
        margin: 0;
    }
    div.box-prod{
        padding: 1.5rem;
    }
}