@import './constants.css';

.question-list {
    position: relative;
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.question {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 20px;
    margin-left: 10%;
}

.question span {
    color: var(--color-red);
    font-size: 1.6rem;
    text-transform: uppercase;
}

ul.answers {
    line-height: 1.6;
    margin-top: 10px;
    text-align: left;
    list-style: none;
    padding: 0;
}

ul.answers li.answer {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

ul.answers li.answer::before {
    content: "✔";
    color: var(--color-red);
    font-weight: bold;
    margin-right: 8px;
}

li.answer p {
    margin: 0;
}

.question-list img {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 5%;
}