/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.75em;

}

.revealer {
    background: #778873;
    width: 350px;
    height: 250px;
    padding: 1em;
    margin: 1em;
    line-height: 1.6;
    border-radius: 10px;
}


.question {
    background: #000000;
    transition: 1s;
}

.question:hover {
    background: #778873;
    transition: 3s;
}