.main {
  width: 100vw;
  background-color: black;
}
.hero-v {
  display: flex;
}
.hero-card {
  display: flex;
  width: 100%;
  min-height: 15rem;
  border-radius: 1rem;
  border-style: solid;
  border-width: 1px;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba( 255, 255, 255, 0.25 );
}
.hero-card:hover .img-bg {
  opacity: 50%;
  filter: blur(0rem);
}
.bg-cont {
  position: absolute;
  align-items: center;
  z-index: -9;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.bg-black {
  position: absolute;
  background-color: black;
  width: 100%;
  height: 100%;
  z-index: -9;
  transform: scale(100);
}
.img-bg {
  width: 100%;
  height: auto;
  opacity: 20%;
  position: block;
}
.card-top-title {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  color: white;
  text-shadow: 0px 0px 4px rgba(0,0,0,1);
  font-weight: 400;
}
.page-width {
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  margin-top: 3rem;
}
.top-bg {
  position: absolute;
  overflow: hidden;
  z-index: -9;
}
.top-bg > img {
  z-index: -9;
  height: 100vw;
  filter: blur(1px);
  opacity: 80%;
}
.general-blur {
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  visibility: hidden;
}
.generic-window-inner {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  width: 49rem;
  max-height: 75vh;
}
.block-scroll {
  display: block;
  overflow: auto;
}
.generic-window-top {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 1rem;
}
.year-parag {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: rgba( 255, 255, 255, 0.05 );
  backdrop-filter: blur( 80.0px );
  -webkit-backdrop-filter: blur( 80.0px );
  border-radius: 10px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.on-hover-dark-color {
  color: rgba(255, 255, 255, 0.5);
}
.on-hover-dark-color:hover {
  color: rgba(255, 255, 255, 1);
  cursor: pointer;
}