.main {
    margin: 20px auto;
}

.box {
    padding: 8px 30px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    border: solid 1px rgb(200, 200, 200);
    margin: 40px 0;
    padding-bottom: 32px;
}

.examples {
    display: flex;
    gap: 35px;
    margin-top: 25px;
}

.examples-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.correct {
    text-decoration: underline;
    color: green;
}

.incorrect {
    text-decoration: underline;
    color: red;
}

.examples>div {
    display: flex;
    flex-direction: column;
}

.examples img {
    width: 100%;
}

.sep {
    border-left: solid 1px rgb(160, 160, 160);
}

.cards {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 25px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.25s;
}

.card:hover {
    box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.2);
}

.card>img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin: 10px;
}

@media only screen and (max-width: 992px) {
    .cards {
        overflow-x: scroll;
        padding: 10px 4px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .card {
        scroll-snap-align: center;
    }

    .examples {
        flex-direction: column;
    }

    .sep {
        border-left: none;
        border-top: solid 1px rgb(160, 160, 160);
    }
}