
:root {
    --white: whitesmoke;
    --red: #d30320;
    --black: black;
    --gray: #464646;
}
.bgwhite {
    background-color: var(--white);
    color: black !important;
}

.bgred {
    background-color: var(--red) !important;
}

.bggray {
    background-color: var(--gray);
}

.bgblack {
    background-color: var(--black);
}

.blacktext h1, .blacktext h2, .blacktext h3, .blacktext p {
    color: black !important;
}
.redtext, .redtext h1, .redtext h2, .redtext h3, .redtext p {
    color: #d30320 !important;
}

.whitetext h1, .whitetext h2, .whitetext h3, .whitetext p {
    color: white !important;
}