* {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px
}

body {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100dvw;
    height: 100dvh;

    background: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    width: 80dvw;
    height: 90dvh;
}

.slide {
    display: none;
    height: fit-content;
    border: solid thin grey;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
    border-radius: 10px;

    background-color: white;
}

.slide-active {
    display: block !important;
}

.prompt {
    font-size: 2em;
    margin: 20px;
}

.response {
    margin: 0 60px;
}

.card {
    display: inline-block;
    width: 20dvw;
    padding: 30px 10px;
    margin: 10px;

    border: solid thin grey;
    border-radius: 5px;

    cursor: pointer;
    user-select: none;

    font-size: 13px;
}
.card:hover {
    box-shadow: 2px 2px 2px grey;
    background-color: greenyellow;
}
.card:active {
    box-shadow: none;
    background-color: rgb(109, 160, 31);
    color: white
}

.card > * {
    pointer-events: none;
}

.card-title {
    font-weight: bold;
    font-size: 1.5em;
}

.error {
    color: white;
}