/* begin reset */

/* remove default margin */
* {
  margin: 0;
}

/* get rid of default html link styling*/
a {
  color: inherit;
  text-decoration: underline;
  text-decoration-style: dashed;
}


/* end reset */


:root {
  --yellow-text: #806418;
  --purple-text: #98289e;
  --blue-text: #00a99b;
  --green-text: #12821f;
  --text-color: var(--yellow-text);


  --yellow-bg: #fff8e6;
  --purple-bg: #fcebff;
  --blue-bg: #efffff;
  --green-bg: #eaffee;
  --bg-color: var(--green-bg);
}


body {


  background-color: var(--bg-color);
  /* 
  min-height: 100%;
  image-rendering: pixelated;
  */
}

button,
body {
  font-size: 1em;
  /*
  font-family: "Times New Roman", serif;
  */
}


::selection {
  background: rgba(0, 0, 0, .99);
  color: white;
}


a:visited {
  color: var(--text-color);
}

a:hover{
  color: white;
  background-color: black;
}


img {
  width: 100%;
}

/* classes for the weird interactive theming */

/* hover effects */

.blacked-out {
  left: 1000px;
  color: black;
  background-color: black;
}

.invisible {
  opacity: 0;
}

.black-bg {
  background-color: black;
}

/* mobile */
/* @media only screen and (max-width: 480px) {

  body {
    padding: 36px;
    font-size: 3em;
  
  
  }


} */


