:root {
  --bgc: rgba(255, 253, 249, 1);
  --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: var(--bodyfont);
  color: var(--textc);
  font-weight: 300;
  font-style: normal;
  font-size: 1rem;
  background-color: darkgray
}

.topnav {
  background-color: dimgray;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);

  width: 100%;
  padding-top: 1px;
}
.topnav #title {
  max-width: 1400px;
  margin: 0 auto;
}

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

  padding: 100px 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-size: 1.75rem;
  color: var(--titlesm); 
  margin-bottom: 10px;
}


.subtitle {
  font-family: var(--titlefont);
  font-weight: 700;
  font-size: 2.25rem;
}
.leader {
  font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: 300;
    font-size: 1.5rem;
}

#sticker {
  width: 30rem;
  padding: 3rem;
}


@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;

  }
}