/* these are the main colors and header image
   replace them with anything you want! */
:root {
    --site-bg: url('images/nothing.png');
    --main-bg: url('images/nothing.png');
    --accent-color: #2C548B;
    --link-color: black;
    --bg-color: #111D4A;
    --text-color: black;
    --text-color2: black;
    --favorite-color: black;
}
/* this theme mostly uses default css colors, but you can get hex codes from sites like this:
   https://palettes.shecodes.io/
   i just looked up "css color templates" to find that link! */

/* this applies to all the content */
* {
    color: var(--text-color);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
a:link {
      text-decoration: none;
}

a:visited {
      text-decoration: none;
}

a:hover {
      text-decoration: none;
}

a:active {
      text-decoration: none;
}
/*white = #2f2f2f2 grey = #63625C darkgreen = #66836D mint = #69A47E jade = #CBB273 pink = #F564A9*/

html {scroll-behavior: smooth;}



