.choice-box {
    display: flex;
    margin-bottom: 0.5em;
    width: 100%;
    font-size: 1em;
    border: 1px solid #551ee1;
    background-color: white;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    border-radius: 2em;
}

.choice-box:hover {
    box-shadow: 0 4px 5px #551ee1;
    transform: translate(-2px);
    transition: transform 300ms;
}

.prefix {
    margin: 0;
    padding: 0.7em 1em;
    background-color: #551ee1;
    color: white;
    border-radius: 50%;
}

.text {
    margin: 0;
    padding: 0 1em;
    width: 100%;
}

.right {
    background-color: lawngreen;
}

.wrong {
    background-color: orangered;
}

#display-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.display-item {
    padding: 0 2em;
    text-align: center;
    font-size: 1.2em;
    background-color: black;
    color: white;
    font-weight: bold;
}

#timer {
  position : absolute;
  top:0;
  left:0;
  background:black;
  color:white;
  height:5em;
  width:100%;
}


#loader {
    border: 1em solid white;
    border-radius: 50%;
    border-top: 1em solid #551ee1;
    width: 6em;
    height: 6em;
    animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}