.content__wrap {
    max-width: 500px;
    width: 100%;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 0.5rem;
}
.content__item {
    list-style: none;
}
.content__item.hidden {
    display: none;
}
.content__image {
    width: 100%;
    display: block;
}
.content__question {
    margin: .5rem 0;
    padding: .5rem;
    border-radius: 2px;
    font-weight: bold;
}
.content__response {
    display:block;
    margin: .5rem 0;
    background-color: #AB2234;
    color: white;
    padding: .5rem;
    border-radius: 2px;
    font-weight: bold;
}
.content__response.hidden {
    display: none;
}
.content__controller {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100vw;
    margin: auto;
    left: 0;
    right: 0;
    top: 50vh;
}
.content__controller button {
    width: 3rem;
    height: 3rem;
    border: none;
    background-color: #AB2234;
    color: white;
    font-size: 2rem;
    border-radius: 3px;
    cursor:pointer;
}
.content__show {
    display: flex;
    gap: .5rem;
    border: none;
    background-color: #AB2234;
    color: white;
    font-size: 1rem;
    border-radius: 3px;
    cursor:pointer;
    padding: 0.5rem 1rem;
    margin: auto;
}