/* Import the font from e.g. Google Fonts */
/* Under the hood these services also use the @font-face rule to reference individual font files */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans");

:root {
  --vpt-theme-headline-font: "Open Sans", sans-serif;
  --vpt-theme-text-font: "Open Sans", sans-serif;
}

a:hover {
  text-decoration: underline;
}

h1 {
  color: #403294; font-size: 28px;
}
h2 {
  color: #403294; font-size: 20px; font-weight: bold;
}

h3 {
  color: #403294;
}