video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.figure {
  all: unset;
  width: 100%;
  height: 100%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 15px;
  gap: 10px;
  transition:
    background-color 0.15s ease,
    max-width 0.5s ease,
    width 0.5s ease,
    height 0.5s ease;
} .figure:hover {
  cursor: pointer;
  background-color: var(--highlight-color);
} .figure:focus-within {
  max-width: 100%;
  width: 300%;
} .figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
} .content .figure p {
  text-align: center;
  
  user-select:           none;
  -webkit-touch-callout: none;
  -webkit-user-select:   none;
  -khtml-user-select:    none;
  -moz-user-select:      none;
  -ms-user-select:       none;
}

.figure-container-duel {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

@media (max-width: 600px) {
  .figure-container-duel {
    flex-direction: column;
  } .figure {
    max-width: 100%;
  } .figure:hover {
    width: 100%;
    cursor: none;
    background-color: var(--background-color);
  }
}