@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*General */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat;
}


/*Body*/
body{
    background-color: rgb(246, 238, 222);
    height: 250vh;
}
/*Header */
h1{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color:rgb(8, 4, 1);
    text-align: center;
}

h2{
    font-family: Roboto;
    color: rgb(8, 4, 1);
}

.Logo{
    height: 5vh;
    width: 5vw;
    position: fixed;
}
article{
    border: 5px solid black;
}
.banner1{
    height: 20vh;
    width: 98vw;
}

/*Main */


li{ 
    margin: 0 10px;
    align-items: center;
}
.accesos{
    margin: 5px;
    text-decoration: none;
    color: black;
    border: 10px solid black;
    height: 5vh;
    width: 20vw;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.accesos:hover{
    background-color: antiquewhite;
    color: cadetblue;
}


/*footer */


.Redes{
    border: 5px solid wheat;
    height: 5vh;
    width: 5vw;
    margin: 0 10px;
}
footer{
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

ul{
    width: 50vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    
}
/*Sobre nosotros */
.trabajando{ 
    height: 20vh;
    width: auto;
    border: 5px dotted  burlywood;
    margin-left: 20px;
}

/*Home */

.parrafo1{
    display: inline;
}

.carousel{
    height: auto;
    width: 50vw;
    margin: 20vh;
}

/*Tienda*/


.Producto{
    margin: 10px ;
    height: 20vh;
    width: 25vw;
}
.tienda{
    height: 95vh;
    width: 95vw;
    display: grid;
    grid-template-columns: 1fr ;
    grid-template-rows: 1fr 8fr 1fr ;
}

.headertienda{
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

.flexproductos{
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    display: grid;
    grid-template-columns: repeat(4 , 1fr) ;
    grid-template-rows: repeat(3 , 1fr);
}

.productC{
    background-color: aquamarine;
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    align-content: center;
}

.footertienda{
    grid-row: 3 / 4;
    grid-column: 1 / 2;
}


.flexgaleria{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: white;
    justify-content: space-evenly;
}


/*Responsive Tienda + inicio */

@media(max-width: 430px) {
    .tienda{
    height: 95vh;
    width: 95vw;
    display: grid;
    grid-template-columns: 1fr ;
    grid-template-rows: 1fr 8fr 1fr ;
    justify-content: center;
}

.headertienda{
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

.flexproductos{
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    display: grid;
    grid-template-columns: repeat(4 , 1fr) ;
    grid-template-rows: repeat(3 , 1fr);
}

.productC{
    background-color: aquamarine;
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    align-content: center;
}

.footertienda{
    grid-row: 3 / 4;
    grid-column: 1 / 2;
}

.accesos{
    justify-content: center;
    height: 15vh;
    width: 20vw;
    padding: 0;
    margin: 0;
    border: 1px solid black;
}

.mainindex{
    margin: 10px;
}

}