body {
    background-color: #883677;
}

.page {
    background-color: #441151;
}


.question-label, li::marker {
    font-family: "Metamorphous", serif;
    color: #ca61c3;
}

.answer-label {
    color: #fae8f9;
    text-decoration-color: #ca61c3;
}

.picture-frame.frame-crystal-ball img {
    mask-image: url("../images/frames/mask-crystal-ball.png");
    mask-origin: content-box;
    mask-size: 100% 100%;
}

.picture-frame.frame-crystal-ball .foreground {
    background-image: url("../images/frames/frame-crystal-ball.png");
    background-origin: content-box;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    pointer-events: none;
}

@media screen and (width <= 500px) {
    .picture-frame {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 16px 0;
        position: relative;
    }

    .picture-frame.frame-crystal-ball {
        aspect-ratio: 1 / 1;
        max-width: 300px;
        margin: 0 auto;
    }

    .picture-frame.frame-crystal-ball .foreground {
        margin: 16px 0;
        height: calc(100% - 32px);
    }
}

@media screen and (width > 500px) {
    .picture-frame {
        position: relative;
        float: right;
        margin: -3rem -4rem 16px 0;
    }
}