.item-pattern-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.item-pattern-question {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex: 1;
  width: 100%;
  position: relative;
}

.item-pattern-options {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.item-pattern-option {
  width: 23vh;
  height: 14vh;
  position: relative;
}

.img-question {
  height: 10vh;
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
}

.img-question img {
  max-height: 100%;
}

.txt-question {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
}

.img-option {
  height: 10vh;
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  left: 50%;
  top: 50%;
}

.txt-option {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  left: 50%;
  top: 50%;
}