* {
  font-weight: bold;
}

.item {
  height: 100%;
}

.title {
  font-family: "cairo";
}

.questions,
.question,
section {
  height: 100%;
}

section {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-content: space-evenly;
}

.modal-body {
  padding: 3.5rem;
  text-align: center;
  background: var(--header-footer-bgcolor);
  /* border-radius: 0 0 25px 25px; */
}

.modal.show .modal-dialog {
  font-size: 2rem;
}

.modal-header {
  padding: 1rem 1rem;
  border-bottom: 4px solid #736f6f;
  align-items: center;
  background: #c1a601;
}

.modal-header button {
  background-color: var(--header-footer-bgcolor);
  border-radius: 10px;
  width: 50px !important;
  height: 50px !important;
  color: #333;
  border: 2px solid;
}

/* ----------------------------------------------------------- */

.box_shape {
  display: flex;
  gap: 10px;
  font-size: 3rem;
  flex-wrap: wrap;
  width: 500px;
  justify-content: center;
  transition: 0.5s;
}

.box_shape div {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.7rem;
  border: 2px solid #777;
  border-radius: 10px;
  transition: 0.5s;
}

.number {
  background-color: rgb(243 229 142);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6.5rem;
  padding-top: 0.5rem;
  border: 2px solid #777;
}

.box_shape .colorful {
  background-color: rgb(228, 222, 222);
  cursor: pointer;
}

.finish {
  animation-name: finish;
  animation-duration: 1s;
  box-shadow: 0px 0px 25px red;
}

@keyframes finish {
  0% {
    transform: scale(1.1);
  }

  40% {
    transform: scale(1);
  }

  75% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.number_10 {
  width: 120px;
  height: 120px;
}