body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Dosis', sans-serif;
}

.header, .footer {
    min-height: 60px;
    background-color: rgb(119, 83, 62);
}

.pasteles {
    opacity: 0;
    background-image: url("./fondo.jpg");
    background-size: 40%;
    padding: 30px 0;
    flex-grow: 1;
}

.row {
    min-width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.contenedor {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

.muestra {
    width: 300px;
}

.tipo {
    min-width: 100%;
    background-color: antiquewhite;
    color: rgb(119, 83, 62);
    text-align: center;
    padding: 9px 0;
    margin: 0;
}

.transicion {
    transition: 0.65s;
}

.pasteles:hover {
    opacity: 1;
    background-size: 50%;
}

.contenedor:hover {
    transform: scale(1.2);
}