* {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
  background-image: url(https://images.unsplash.com/photo-1599148401012-60bd30ff1967?q=80&w=2250&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-position: center;
  min-height: 100dvh;
}

.hero-card {
  color: azure;
  background-color: #303030;
  font-size: 1.2rem;
  padding: 1rem;
}

.card-border {
  border: solid azure 3px;
  border-radius: 15px;
}

.boss-card {
  padding: 1rem;
  color: azure;
  text-shadow: 2px 2px black;
  background-image: url(https://images.unsplash.com/photo-1516214104703-d870798883c5?q=80&w=2340&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-position: bottom;
}

.emoji {
  font-size: 4rem;
}

.perished {
  filter: grayscale(1);
  rotate: 180deg;
}

.hero-card img {
  height: 10dvh;
}

.hero-card>p {
  margin-bottom: 0;
}

.boss-img {
  filter: drop-shadow(10px 10px 15px black);
  transition: all .1s ease-out;
}

.boss-img:active {
  filter: drop-shadow(16px 16px 80px red);
}

.col-6>div {
  user-select: none;
}