.title{
  font-family: "Pixelify Sans", serif;
  font-optical-sizing: auto;
  font-weight: 10px;
  font-style: normal;
  color: rgb(21, 251, 0);
}

.page {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  align-items: center;
  gap: -10px; /* Slight overlap */
  margin-top: 50px;
  background-color: black;
}

.card {
  width: 120px;
  height: auto;
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
.legacy{
    font-family: "Pixelify Sans", serif;
    font-optical-sizing: auto;
    font-weight: 10px;
    font-style: normal;
    color: rgb(21, 251, 0);
}
/* Adjusting overlap and spread */
.card:nth-child(1) { transform: translateX(-20px) rotate(-15deg); }
.card:nth-child(2) { transform: translateX(-10px) rotate(-7deg); }
.card:nth-child(3) { transform: translateX(0px) rotate(0deg); }
.card:nth-child(4) { transform: translateX(10px) rotate(7deg); }
.card:nth-child(5) { transform: translateX(20px) rotate(15deg); }

body{
    background-color: black;
}
