/* * {

  transition: .4s;
}  */
.item {
  height: 100%;
}

.questions {
  height: 100%; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.item_count {
  white-space: nowrap;
}
.letters {
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.letter {
  width: 150px;
  gap: 1rem;
  height: fit-content;
  cursor: pointer;
}
.letter img {
  width: 100%;
  border: 3px solid;
  border-radius: 10px;
  background: #c6b5b53d;
}
.letters_row {
  display: flex;
  gap: 1rem;
}
 
.animation {
  background-color: rgba(0, 162, 255, 0.527);
  border-radius: 10px;
  animation-name: clicked;
  animation-duration: 1s;
}

@keyframes clicked {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);

  }
  100% {
    transform: scale(1);

  }
}