/* import font files */
@import url("../fonts/caprasimo.css");
@import url("../fonts/raleway.css");

/* variables */ 
:root {
  /* colors */ 
  --white: #fff;
  --gray: #333333;
  --green: #007a17;
}

/* styles.css */

html, body {
  font-family: 'Raleway';
}
h1, h2, h3, h4, h5 {
  font-family: 'Caprasimo';  
  color: var(--green);
}

footer h1, footer h2, footer h3, footer h4, footer h5 {
  color: var(--white);
}
footer a, footer a:visited {
  color: var(--white);
  text-decoration: underline;
}
footer a:hover {
  text-decoration: none; 
}

.gallery-item img, .gallery-item picture {
  border-radius: 16px;
  border: 3px solid #555;
}