/***SYTLE UNIQUE TO THE PLAYGOUND PAGE***/
img {
  max-width: 100%;
  height: auto;
}

div.grid.two-col{
  margin: 0;
}

/* HOBBIES/INTERESTS STYLE-------------------*/
.hobbies{
  background-color: rgba(111, 200, 57, 0.24);
  padding: 2rem;
  border-radius: .2rem;
  grid-template-columns: fit-content();
  height: fit-content;
  margin-top: 3rem;
  display: grid;
}

.hobbies h2 {
  font-family: PixelifySans, AlteHaasGrotesk, "Helvetica Neue", sans-serif;
  font-weight: 500;
}

.hobbies h3 {
  font-family: PixelifySans, AlteHaasGrotesk, "Helvetica Neue", sans-serif;
  font-weight: 500;
  color: #757575;
}

.hobbies h3, .hobbies h2{
  color: #40463C;
}
/* END OF HOBBBIES/INTERESTS  STYLE */


/* OTHER PROJECTS STYLE-------------------*/
.other-projs{
  margin-top: 1.5rem;
}

.category-icon{
  justify-self: end;
  align-self: center;
}

.category-projimgs *{
  column-gap: 1rem;
  margin-bottom: 1rem;
}

.category-divider{
  margin-top: 0;
  background-color: rgba(112, 200, 57, 0.062);
  margin-bottom: 2rem;
}

.category-projimgs a img {
  transition: opacity 0.s ease-in-out;
}
.category-projimgs a:hover img,
.category-projimgs a:focus img{
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}
/* END OF OTHER PROJECTS  STYLE */


/* EXTRA PLAYGROUND PAGE GRID STYLING-------------------*/
.proj-category-col{
  grid-template-columns: 1fr 1fr;
}

/* APPROXIMATELY 320px */
@media (min-width: 20rem) {
  .grid.three-col.artwork{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* APPROXIMATELY 640px */
@media (min-width: 40rem) {
  .playground-col{
    grid-template-columns: 1fr;
  }

  .hobbies {
    position: relative;
  }

  .proj-category-col{
    margin-top: 2rem;
    margin-bottom: .5rem;
  }

}

/* APPROXIMATELY 1024px */
@media (min-width: 64rem) {
  .playground-col {
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
  }

  .hobbies{
    position: sticky;
    top: 2rem;
  }

  .proj-category-col{
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

}

/* APPROXIMATELY 2560px */
@media (min-width: 120rem) {

}
/* END OF EXTRA PLAYGROUND PAGE GRID STYLING*/