.container {
    display: flex;
    width: 100%;
    overflow: hidden;
    height: 100vh;
  }

.circle-highlight {
  position: absolute;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(closest-side, #ffe3d733, rgba(255, 255, 255, 0));
}

.column {
  width: 20%;
  display: flex;
  height: max-content;
  top: 0px;
  flex-direction: column;
  align-items: center;
  padding: 0px 0.2em 0;
  transition: linear transform 0s;
  --is-hovered: 0;
  --moving-direction: -1;
  --speed: 1;
  --dragging: 0;
}

.column:hover {
  --is-hovered: 1;
}

@keyframes moveDown {
  0% {

  }
  100% {
    transform: translateY(0px);
  }
}

.reference_info {
  position: relative;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: color 0.5s ease-in-out, opacity 0.5s ease-in-out;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
  opacity: 0;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
  font-size: 1em;
  user-select: none;
}

.reference_info > h2 {
  font-size: 1.4em;
  width: 100%;
  text-align: center;
  padding: 0 0.2em;
  margin: 1.5em 0;
}

.reference_info > p {
  font-size: 0.8em;
  margin: 2em 15%;
}

.reference {
  display:block;
  width: 100%;
  height: 100%;
  aspect-ratio: 2/3;
  margin: 0.2em 0;
  overflow: hidden;
  border: 1px black solid;

  cursor: pointer;
}

.reference_img {
  position: relative;
  top: 0;
  left: 0;
  width:100%;
  height:100%;
  margin:0;
  transition: color 0.5s ease-in-out, filter 0.5s ease-in-out;
  z-index: 1;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: inset 0 0 7px rgba(255, 255, 255, 0.2);
}

.reference_info > a {
  pointer-events: none;
}

.reference_info > a > .button {
  position: absolute;
  bottom: 0;
  width: 66.6%;
  margin: 2em 16.66%;
  border: #e2e2e2 solid 0.1em;
  background-color: #e2e2e200;
  transition: ease background-color 0.3s;
}

.reference_info > a > .button:hover {
  background-color: #e2e2e238;
}

.reference_info > a > .button > h2 {
  font-size: 1.2em;
  color: #e2e2e2
}
/* Not sure ig this is cool... */
p:first-of-type:first-letter {
  font-size: 395%;
  line-height: 1;
  float: left;
  padding-right: .125em;
}

@media (max-width: 800px) {
  .reference_info > h2 {
    margin: 1.5em 0;
  }

  .reference_info > p {
    margin: 2em;
  }
}