 
.item {
    height: 100%; 
} 
.questions {
  display: flex;
  background: #80808021;
  width: 400px;
  justify-content: space-around;
  align-items: center;
  margin: 2rem auto;
  font-size: 2rem;
  border-radius: 28px;
  padding: 5px 10px;
  border: 3px solid gray;
}
.questions .ques {
  cursor: pointer;
  padding: 5px  25px;
}
.options {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translate(-50%);
    width: 80%;
}
.options .box {
  width: 200px;
  gap: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.options .box img {
  width: 100%;
  border-radius: 30px 30px 0 0;
}
.options .box .answer_box {
  background-color: #c5c5c57d;
  width: 100%;
  height: 50px;
  cursor: pointer;
  border-bottom: 3px solid gray;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 2rem;
  text-transform: capitalize;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.letter {
  /* font-size: 500%; */
}