/* Smooth scrolling IF user doesn't have a preference due to motion sensitivities */
@media screen and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 20px;
  align-items: stretch;
}
.grid img {
  max-width: 100%;
}

a {
  color:#1f67db;
}

html {
  font-family: "EB Garamond","calendas_plus", Helvetica, sans-serif;
  background-color: #fbfbfb;
}
/*
font-family: 'Cormorant Garamond', serif;
font-family: 'Libre Franklin', sans-serif;
font-family: 'Rubik', sans-serif;
font-family: 'Work Sans', sans-serif;
*/

h3, h4, h5 {
  font-family: 'Work Sans', serif;
  font-weight:bold;
}

body {
  font-family: 'Cormorant Garamond', "Helvetica Neue", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.2;
  color: #333333;
}

.main p {
  text-align: center;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-gap: 10px;

  padding: 10px;
}

.contact {
  font-size: 1rem;
  line-height: 1;
}

.grid-container > div {
  border: 1px solid white;
  text-align: center;
  font-size: 30px;
}

.section:hover {
  background-color: yellow;
}
