body {
  background: black;
}

.browseImage{
  position: relative;
  width: 16.66%;
  height: 100vh;
  z-index: -1;
}

.browseImage:hover {
  z-index: 0;
}

.browseImage:hover a img{
  filter: saturate(100%);
  opacity: 0.65;
  box-shadow: 0 0 30px 5px black;
}

.browseImage a img{
  object-fit: cover;
  width: 100%;
  height: 100vh;
  filter: saturate(0%);
  opacity: 0.3;
  z-index: -1;
}

.browseImage a div {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  top: 13%;
  left: 0;
  width: 6rem;
  height: 70%;
}

.browseImage:hover a div h2{
  color: #fff;
}

#browseImageCont {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.desktopNav {
  display: block;
}

.desktopSection {
  display: inline;
}

.exploreBtn {
  display: none;
  position: absolute;
  top: 57%;
  left: -1rem;
  align-items: center;
  color: white;
  font-family: myRegularFont;
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0);
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 2px solid white;
  margin-bottom: 1.9rem;
  margin-left: 1rem;
}

.mobileNav {
  display: none;
  background-color: #2D2D2D;
  padding-bottom: 1rem;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.6);
}

.mobileSection {
  display: none;
}

.subHeader {
  color: #8a8a8a;
  font-family: myBoldFont;
  font-size: 1.8rem;
  position: relative;
  /* position: absolute;
  top: 0;
  left: 0; */
  letter-spacing: 3rem;
  padding-bottom: 1.8rem;
}

@media screen and (max-width: 600px) {
  .browseImage{ 
    width: 100vw;
    height: 16.66%;
  }

  .browseImage a img{
    width: 100vw;
    height: 100%;
  }

  .browseImage a div {
    flex-direction: row;
    top: 5%;
    left: 5%;
  }

  .browseImage:hover a div button{
    display: flex;
  }

  #browseImageCont {
    top: 5rem;
    flex-direction: column;
    height: calc(100% - 5rem);
  }

  .desktopNav {
    display: none;
  }

  .desktopSection {
    display: none;
  }

  .mobileNav {
    display: block;
  }

  .mobileSection {
    display: inline;
  }

  .subHeader {
    letter-spacing: 0.5rem;
  }
}