:root {
  --primary-color: #d0021b;
  --primary-color-dark: color-mix(in srgb, var(--primary-color), black 20%);
  --primary-color-light: color-mix(in srgb, var(--primary-color), white 20%);
}

body {
    background: #FFF;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
}
a,
a:visited {
    color: #431510;
}
a:hover {
    color: var(--primary-color);
}
a.button {
    display: block; 
    margin: 1rem auto;
    padding: 1rem;
    max-width: 200px;
    background: var(--primary-color);
    color: #FFF;
    text-transform: uppercase;
    text-decoration: none;
}
a.button:hover {
    background: var(--primary-color-dark);
    color: #FFF;
}