: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);
  margin: 0px;
}


button,
body {
  font-family: "Times New Roman", serif;
}


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

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

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

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


img {
  width: 100%;
}


.page {
  display: flex;
  justify-content: center;

  font-size: 18px;


  /* 
  image-rendering: pixelated;
  */
}

.content {
  padding-left: 90px;
  padding-right: 90px;
  padding-top: 80px;
  padding-bottom: 80px;

  /* not too wide */
  max-width: 700px;

  
}



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

  .content {
    padding: 1rem;
    /* 
    font-size: 3em;
    */
  
    /* not too wide */
  
  }

  .archive-item {
    margin-top: 1em;
    margin-bottom: 1em;
  }

  .archive-date {
    display: none;
  }

}


