/* STYLE OF MAIN */

.container {
    text-align: center;
    padding: 0px 20px 20px 20px;
}
.header {
    font-family: "Paytone One", sans-serif;
    font-size: 2em;
    margin: 15px;
    color: #343434;
}
.subheader {
    font-size: 23px;
    margin-bottom: 20px;
    font-family: "Dancing Script", cursive;
}

.subheaderText {
    font-family: "Amatic SC", sans-serif;
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
}
.products {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.product {
    background: url('../img/fondoProductos.png');
    background-size: cover;
    width: 40%;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
}

.product img {
    max-width: 300px;
    max-height: 200px;
    margin-bottom: 10px;
    transition: transform 0.4s;
}

.product img:hover {
    transform: translateY(-10px);
}

.product-title a{
    text-decoration: none;
    color: #5a5b5b;
    font-family: "Paytone One", sans-serif;
    font-size: 1.5em;
    font-weight: bold;
}

.product-title a:hover {
    color: #343434;
}

.product-description {
    font-family: "Amatic SC", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    margin-top: 10px;
}

/* BREAKPOINS  */

@media (max-width: 768px){
    .product {
        width: 80%;
    }
}