.img-holder img{
  max-height: 200px;
  max-width: 200px;
  grid-column: 1;
  grid-row: 1;
  padding: 2px;
  background: linear-gradient(rgb(240, 240, 240), rgb(220, 220, 220));
  filter: drop-shadow(0 0 2px rgba(96, 96, 96, 0.75));
}
.container a{
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: black;
}

.img-holder {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-content: center;
}

.img-holder img:first-child{
  order: 3;
}
.img-holder img:nth-child(2){
  order: 2;
  transform: rotate(4deg);
}
.img-holder img:last-child{
  order: 1;
  transform: rotate(-3deg);
}

:root {
  --scale: scale(1.075);
}

.img-holder img, .album-name, .character-container a {
  transition: transform 0.1s;
}

.album-container a:focus, .container a:hover {
  text-decoration: underline;
}

.album-container a:focus img:first-child,
.album-container a:hover img:first-child {
  transform: var(--scale);
}

.album-container a:focus img:nth-child(2),
.album-container a:hover img:nth-child(2) {
  transform: var(--scale) translate(2rem, -1rem) rotate(2deg);
}

.album-container a:focus img:last-child,
.album-container a:hover img:last-child {
  transform: var(--scale) translate(-2rem, 1rem) rotate(-2deg);
}

.album-container a:focus span.album-name,
.album-container a:hover span.album-name {
  transform: translateY(1rem)
}

.album-container{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.character-container a:focus, .character-container a:hover{
  transform: var(--scale);
}
.character-container a:focus span.album-name, .character-container a:hover span.album-name{
  transform: translateY(0.5rem);
}

.potrait-holder{
  
}
.potrait-holder img{
  width: 100px;
  height: 100px;
  object-fit: cover;
  background: none;
  padding: 5px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5))
}