@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* general */
body {
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
    margin: 0px;
    overflow-wrap: break-word;
    text-align: center;
}
h1 {
    text-transform: uppercase;
    width: 40%;
}
h2 {
    text-transform: uppercase;
}
/* encabezado */
header {
    display: flex;
    justify-content: space-between;
    margin: 15px;
    flex-wrap: wrap;
}
header a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 1px 1px 3px 2px black;
}
header a img {
    width: 74%;
    height: 74%;
}
/* main */
main p,
main h2 {
    padding: 0px 10px;
}
main div {
    display: flex;
    flex-direction: column;
    border: 1px solid gray;
    margin: 5px 15px;
    padding: 5px;
    width: 200px;
    border-radius: 10px;
    transition-duration: 3s;
    justify-content: center;
}
main div a {
    color: white;
    background-color: black;
    border-radius: 10px;
    text-decoration: none;
    padding: 0px 5px;
    transition-duration: 1s;
}
main div a:hover {
    color: black;
    background-color: white;
}
main div.Color1 {
    background-color: hsl(0, 0%, 68%);
}
main div.Color2 {
    background-color: hsl(0, 0%, 86%);
}
main section#Catalogo {
    display: flex;
    overflow-x: scroll;
}
main section#Destacado {
    display: flex;
    overflow-x: scroll;
}
/* footer */
footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 10px 0px 0px 0px;
    padding: 5px;
    box-shadow: 0px -1px 10px 0px black;
    border-radius: 10px 10px 0px 0px;
}
footer a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 1px 1px 3px 2px black;
}
footer a img {
    width: 74%;
    height: 74%;
    border-radius: 20%;
}
@media (min-width: 500px) {
    main section#Catalogo {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: hidden;
    }
    main section#Destacado {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: hidden;
    }
}
@media (max-width: 220px) {
    h1 {
        font-size: 14vw;
    }
}
@media (max-width: 180px) {
    header {
        display: block;
    }
    header a {
        width: auto;
        max-width: 50px;
    }
}
