/* Whole page: */
body {
    font-family: Helvetica;
}

header h1 {
    font-size: 100px;
    color: khaki;
    text-align: center;
    background-image: url("../images/pattern.webp");
}

/* Applied to all sections: */
.products h2 {
    color: white;
    font-size: 32 px;
}

.products p {
    font-weight: normal;
}

.blue-text {
    color: blue;
    font-weight: bold;
}

/* Apply to specific sections: */
#brushes h2{
    background-color: mediumspringgreen;
}

#frames h2 {
    background-color: lightcoral;
}

#paint h2 {
    background-color: skyblue;
}