body {
  --main: #52796f;
  --light: #84a98c;
  --lighter: #cad2c5;
  --dark: #354f52;
  --darker: #2f3e46;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;

  background-image: url(reigns-wp.jpg);

  margin: 0;
  height: 100dvh;
}

.reigns {
  height: 100%;
  max-width: 500px;
  width: 100%;

  display: flex;
  flex-direction: column;

  background-color: var(--dark);
}

.stats {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;

  width: 100%;
}

.stat svg {
  width: 100%;
}

.svg {
  position: absolute;
  bottom: 0;
  width: 100px;
  height: 10px;
  overflow: hidden;
}

.content {
  height: 65%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
  background-color: var(--lighter);
  padding: 50px 0;
}

.quest {
  text-align: center;
  padding: 0 35px;
  font-size: 22px;
  margin: 0;
  height: 150px;
}

.deck {
  position: relative;
}

.card {
  height: 350px;
  width: 350px;
  border-radius: 16px;
}

.top {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main);
  transition: 0.3s ease;

  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.top:hover {
  transform: translateY(-20px);
}

.top:has(.left:hover) {
  transform: rotate(-10deg) translateX(-50px);
  transition: 0.3s ease;
}

.top:has(.right:hover) {
  transform: rotate(10deg) translateX(50px);
  transition: 0.3s ease;
}

button {
  border: none;
  cursor: pointer;
  opacity: 0;
  width: 35%;
  transition: 0.3s ease;
  background-color: var(--main);
}

button:hover {
  opacity: 0.6;
  background: linear-gradient(to right, rgba(82, 121, 111, 0), var(--dark));
  transition: 0.3s ease;
}

button.left:hover {
  opacity: 0.6;
  background: linear-gradient(to left, rgba(82, 121, 111, 0), var(--dark));
  transition: 0.3s ease;
}

.bottom {
  background-image: url(card-pattern.png);
  background-size: 550px;
  background-position: center;
}

.title {
  font-size: 18px;
  font-weight: 400;
}
