
/**** STYLES ****/ 
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

body {
  font-size: 1.25rem;
  line-height: 1.6;
  padding: 20px;
  cursor:crosshair;
  background-color: #F5F2ED;
  color:#130C01;
  font-family: "EB Garamond", serif;

}

h1, h2, h3 {
  font-weight: 500;
}

a:visited {
  color: blue;
}

a:hover {
  filter: blur(2px);
}

hr {
  border: none;
  border-top: 1px dotted black;
  margin-top:50px;
}

/**** LAYOUT ****/ 
.narrow {
  width: 100%;
}

@media (min-width: 768px) {
  .narrow {
    width:33.33%;
  }
}

