body {
  font-family: 'Inter', sans-serif;
  background-color: #FCF9E2;
  margin: 0
}
::selection {
  background: #FFD979;
  text-shadow:none;
}
html {
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale
}

 /* removes white border around div */
* {
  margin:0;
  padding:0;
}

 /* font */
h1 {
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.25;
}

h2 {
  font-size: 0.9em;
  font-weight: 400;
  padding-top: 6px;
}

 /* project grid */
.project-container {
  width: 85%;
  margin: auto;
  justify-content: flex-start;
}

.project-grid {
  display: grid;
  grid: auto-flow / 1fr 1fr 1fr;
  margin-bottom: 40px;
  margin-top: 100px;
  row-gap: 2em;
  column-gap: 2em;
}

img {
  width: 100%;
}

.item-description {
  margin-top: 10px;
}

 /* links */
 .nav {
  position: fixed;
  top: 0px!important;
  margin-top: 20px;
  z-index: 5;
}

a:link {
  color: #000000;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:visited {
  color: #000000;
}
a:active {
  color: #000000;
}

a.title-link:link {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #FFBA73;
  padding: 4px 10px 4px 10px;

}
a.title-link:visited {
  color: #000;
}
a.title-link:hover {
  color: #000;
}
a.title-link:active {
  color: #000;
}

a.about-link:link {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #68BE95;
  padding: 4px 10px 4px 10px;

}
a.about-link:visited {
  color: #000;
}
a.about-link:hover {
  color: #000;
}
a.about-link:active {
  color: #000;
}

a.shop-link:link {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #EFB5D6;
  padding: 4px 10px 4px 10px;

}
a.shop-link:visited {
  color: #000;
}
a.shop-link:hover {
  color: #000;
}
a.shop-link:active {
  color: #000;
}

@media only screen and (max-width: 1050px) {
  .project-grid {
    grid: auto-flow / 1fr 1fr;
  }
}

@media only screen and (max-width: 600px) {
  .project-grid {
    grid: auto-flow / 1fr;
  }
}
