main {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
}

h2 {
    margin: 2rem;
    text-align: center;
    font-size: 3rem;
    color: yellow;
    margin-bottom: 1rem;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
}

.subtitle {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

main img {
    justify-self: center;
}

.question-container {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    margin-bottom: 2rem;
}

.question {
    font-size: 1.8rem;
}

.answers {
    display: grid;
    grid-template-rows: repeat(4, auto);
    row-gap: 1rem;

    font-size: 1.4rem;
    margin-bottom: 2rem;
}

input[type="radio"] {
    margin-right: 1rem;
    transform: scale(1.4);
}

.box {
    background-color: lightgreen;
    color: black;
    border: 5px solid yellow;
    border-radius: 10px;
    padding: 1rem;
}

.controls {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.btn {
    border: 3px solid yellow;
    background-color: lightgreen;
    font-size: 1rem;
    padding: 1rem 4rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'DynaPuff';
    margin-bottom: 1rem;
}

.btn:hover {
    background-color: #74d175;
}

.btn:active {
    transform: scale(1.02);
}

.controls .disabled {
    opacity: 50%;
    pointer-events: none;
}
