@font-face { font-family: MochiyPop; src: url(https://files.catbox.moe/u54pww.ttf);}
@font-face { font-family: Kingjola; src: url(/vii/kingjola.ttf);}

::selection {
	color: black;
	background: rgba(196, 155, 170, 0.5);
}

body {
  background-image: url(/vii/bg.png);
  background-size: 100%;
  font-family: ms gothic, monospace;
  display: flex;
  justify-content: center;
  padding: 2rem;
  margin: 0;
}

#grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}

#character-card {
  text-align: center;
  position: relative;
}

.wrapper {
  position: relative;
  width: 180px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
}

.portrait {
  z-index: 1;
  position: relative;
  position: absolute;
  top: 3%;
  left: 2%;
  width: 95%;
  height: 95%;
  object-fit: cover;
}

.portrait:hover {
  filter: blur(1px);
}

.mirror-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  filter: brightness(1.3)
}

#name {
  margin-top: 0.5rem;
  font-size: 3rem;
  font-weight: bold;
  color: #2c2c2c;
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-family: Kingjola;
}

#description {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #2c2c2c;
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
