body {
    background-color: lightgrey;
    font-family: sans-serif;
    color: #353535;
    padding: 8px;
}

@media screen and (min-width: 600px) {
    body {
        font-size: large;
    }

    .predict-button {
        font-size: x-large;
    }
}

@media screen and (min-width: 400px) and (max-width: 599px) {
    body {
        font-size: medium;
    }

    .predict-button {
        font-size: medium;
    }
}

@media screen and (max-width: 399px) {
    body {
        font-size: small;
    }

    .predict-button {
        font-size: small;
    }
}



h1, h2, h3, h4 {
    color: #222222;
}

.column-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 48px;
}

.card-wrapper {
    filter: drop-shadow(12px 12px 16px black);
    display: inline-block;
}

.example-wrapper {

}

.reddit-thread-example {
    font-size: small;
    filter: drop-shadow(12px 12px 16px black);
    background-color: #1a1a1b;
    padding: 12px;
    color: rgb(215, 218, 220);
    max-width: 450px;
}

.reddit-comment {
    margin-bottom: 1em;
    margin-top: 0.5em;
    padding: 0 1em;
}

.reddit-avatar-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.reddit-avatar {
    width: 24px;
    height: 24px;
    display: block;
    border-radius: 12px;
}

.reddit-avatar-red {
    background: red url('../img/icons/reddit-avatar.svg');
}

.reddit-avatar-blue {
    background: blue url('../img/icons/reddit-avatar.svg');
}

.reddit-shift {
    border-left: solid 2px #343536;
}

.reddit-shift-1 {
    margin-left: 2em;
}

.reddit-shift-2 {
    margin-left: 4em;
}

.reddit-shift-3 {
    margin-left: 6em;
}

.reddit-user {
    font-size: smaller;
    font-weight: 600;
}

.flip-card {
    /* max-height: calc(100vh - 32px); */
    width: calc(100vw - 32px);
    max-width: 450px;
    aspect-ratio: 3/5;
    /* perspective: 1000px; */
    transition: 0.8s;
}

.flip-card.flipped {
    /* transform: scale(0.1); */
}

.flip-card-inner {
    transition: transform 0.8s;
    transform-style: preserve-3d;
    position: relative;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front {
    background-image: url('../img/traps/trap-template.png'), url('../img/traps/0.webp');
    background-size: cover;
    backface-visibility: hidden;
}

.flip-card-back {
    backface-visibility: hidden;
    background-image: url('../img/traps/back.webp');
    background-size: cover;
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
    left: 0;
}

.w100h100 {
    height: 100%;
    width: 100%;
}

.container-div {
    height: 100%;
}

.card-text-spacer {
    height: 20%;
}

.card-text-div {
    margin: 0 15% 1% 15%;
    height: 80%;
    overflow: auto;
    padding: 8px 0;
    box-sizing: border-box;
}

.large-text-input {
    width: 100%;
    box-sizing: border-box;
}

.center {
    text-align: center;
}

.mandatory {
    
}

.predict-button {
}

.update-button {

}

.error-text {
    color: darkred;
    font-style: italic;
}

.clarification {
    color: #777777;
    font-size: smaller;
    font-style: italic;
    margin-top: 0.2em;
}

.important-text {
    font-weight: 600;
}

.current-step::before {
    content: '👉';
}

.current-step::after {
    content: '👈';
}

.paragraph {
    margin-top: 2em;
}

.clickable {
    cursor: pointer;
}

.prediction {
    font-family: Georgia, serif;
}

.prediction-text {
    font-size: larger;
    border-left: solid 3px grey;
    padding-left: 1em;
}

.prediction-author {

}

.prediction-date {

}

.prediction-disclosure-date {

}

.private-code {
    font-family: monospace;
    font-size: large;
    color: burlywood;
    background: black;
}

.public-code {
    font-family: monospace;
    font-size: large;
    color: burlywood;
    background: darkgreen;
}

.public-link {

}

