@import url('color.css');
@import url('reset.css');
@import url('./layout.css'); 
@import url('./type.css'); 


body {
  font-family: 'Kepler Std', serif;
  margin: 0;
  padding: 0;
  background-color: white;
  color: black;
}

h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #983623;
}

a:hover {
  color: #588797;
}


