
:root {
  --bgc: rgb(220 216 209);
  --textc: rgba(44, 43, 51, 1);
  --textsm: rgba(44, 43, 51, .5);
  --titlesm: rgba(44, 43, 51, 1);
  --bodyfont: "Roboto", sans-serif;
  --leaderfont: "Roboto Slab", sans-serif;
  --titlefont:"Life Savers", serif;
  --smfont:"Lora", serif;
}
body {
  margin: 0;
  font-family: "Delius", cursive;
  color: var(--textc);
  font-weight: 300;
  font-style: normal;
  font-size: 1rem;
  background-color: var(--bgc);
}

.topnav {

  background-color: var(--bgc);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
  width: 100%;
  z-index: 3;
  font-size: 1.74rem;
  padding: 0 20px;
  margin-bottom: -154px;
}
.topnav #title {
  max-width: 1400px;
  margin: 0 auto;
}

.item-container {
  max-width: 1400px;
  margin: 0 auto;

  padding: 160px 20px 0;

  height: calc(100vh - 160px);
}
.item {
  box-sizing: border-box;  
  padding: 20px;
  margin-bottom: 20px;
}
.small{
  font-family: var(--smfont);
  font-size: 1rem;
  color: var(--textsm); 
  margin-bottom: 20px;
}
.titlesmall{
  font-family: var(--smfont);
  font-size: 1rem;
  color: var(--titlesm); 
  margin-bottom: 10px;
}
hr {
  width: 100%;

}
.subtitle {
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-size: 2.25rem;
}
.leader {
  font-family: "Zain", sans-serif;
  font-weight: 300;
    font-size: 1.5rem;
}

@media (min-width: 48em) {

  .item-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 0px;

  }
}