body {
  background-color: #000;
  margin: 0;
  overflow-x: hidden;
}

h1 {
  color: #fff;
  font-family: "Roboto Mono", monospace;
  font-weight: 100;
  font-size: 80px;
  text-align: center;
  margin: 0;
  padding: 8px;
}

.explore-nav {
  display: flex;
  justify-content: center;
}

.explore-navlink {
  color: #fff;
  font-family: "Roboto Mono", monospace;
  font-weight: 100;
  font-size: 32px;
  text-decoration: none;
  padding: 0 10px;
  transition: 0.3s;
}

.explore-navlink:hover {
  text-decoration: underline;
}

.explore-split {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.explore-half {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.explore-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.explore-half:hover .explore-img {
  transform: scale(1.1);
  opacity: 0.25;
}

.explore-label {
  position: absolute;
  color: #fff;
  font-family: "Roboto Mono", monospace;
  font-weight: 100;
  font-size: 80px;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.explore-half:hover .explore-label {
  opacity: 1;
}

/* Mobile */
@media(max-width: 900px) {
  .explore-label {
    font-size: 48px;
  }
}
