 
.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: 0 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: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.options .box img {
  width: 100%;
  border-radius: 50px 50px 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;
}

.letter {
  font-size: 500%;
}