:root {
  /* Change the main purple to Fire Engine Red */
  --cassiopeia-color-primary: #ce2029;
  
  /* Change links to Red */
  --cassiopeia-color-link: #ce2029;
  
  /* Change the hover color (darker red) */
  --cassiopeia-color-hover: #a3000b;
}

/* Optional: Make the header bar solid red with white text */
.container-header {
    background-color: #ce2029;
    background-image: none; /* Removes the default gradient */
    color: #ffffff;
}

.container-header a {
    color: #ffffff; /* Makes header links white */
}