.orderByButton { display: none; }
.noProductsFound p {
    font-family: 'General Sans';
    font-weight: 800;
    font-size: 3.8em;
    text-align: center;

}

.noProductsFound a {
    font-family: 'General Sans';
    font-size: 1.8em;
    font-weight: 600;
    color: black;
}
.noProductsFound {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50vh;
}





.entry-content {
    height: 70vh;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.entry-content h3 {
    color: black;
    font-family: 'General Sans';
    font-size: 12em;
    margin: 0;
}

.entry-content p {
    color: black;
    font-family: 'General Sans';
    font-weight: 500;
    font-size: 1.3em;
    text-align: center;
}
.entry-content a {
    cursor: pointer;
    color: black;
    text-align: center;
    font-family: 'General Sans';
    font-size: 2em;
}

@media only screen and (max-width:1600px){

    .noProductsFound {
        width: 80%;
        margin-inline: auto;
    }
    .noProductsFound p{
        font-size: 3.4em;
    }
}

@media only screen and (max-width:1000px){
    .noProductsFound p{
        font-size: 3em;
    }
}

@media only screen and (max-width:700px){
    .noProductsFound p {
        font-size: 2.5em;
    }
    .noProductsFound a{
        font-size: 1.5em;
    }
}
@media only screen and (max-width:500px){
    .noProductsFound{
        width: 100%;
    }
    .noProductsFound p{
        font-size: 1.8em;
    }
    .noProductsFound a{
        font-size: 1.3em;
    }
    .entry-content h3 {
        font-size: 8em;
    }
    .entry-content p {
        font-size: 1.1em;
    }
    .entry-content a {
        font-size: 1.8em;
    }
}