/*
             * Prefixed by https://autoprefixer.github.io
             * PostCSS: v8.4.14,
             * Autoprefixer: v10.4.7
             * Browsers: last 4 version
         */

/** Base colors */
:root {
    --clr-dark-a0: #000000;
    --clr-light-a0: #ffffff;

    /** Theme primary colors */
    --clr-primary-a0: #757b7d;
    --clr-primary-a10: #83898b;
    --clr-primary-a20: #929798;
    --clr-primary-a30: #a1a5a6;
    --clr-primary-a40: #b0b3b5;
    --clr-primary-a50: #bfc2c3;

    /** Theme surface colors */
    --clr-surface-a0: #121212;
    --clr-surface-a10: #282828;
    --clr-surface-a20: #3f3f3f;
    --clr-surface-a30: #575757;
    --clr-surface-a40: #717171;
    --clr-surface-a50: #8b8b8b;

    /** Theme tonal surface colors */
    --clr-surface-tonal-a0: #2d2f2f;
    --clr-surface-tonal-a10: #414343;
    --clr-surface-tonal-a20: #565858;
    --clr-surface-tonal-a30: #6c6e6e;
    --clr-surface-tonal-a40: #838484;
    --clr-surface-tonal-a50: #9a9c9c;
}

::-moz-selection {
    background: #000000;
    color: #000000;
}

::selection {
    background: #000000;
    color: #000000;
}

::-moz-selection {
    background: #000000;
    color: #000000;
}

@media all and (max-width: 930px) {
    #notice-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 75%;
    }
    .blocname-image {
        margin-right: unset !important;
    }
}

@media all and (max-width: 550px) {
    #notice-container {
        width: 100% !important;
        padding: 20px 0 !important;
    }
    .blocname-image {
        padding: 0 20px !important;
    }
}

html {
    height: 100%;
    width: 100%;
    cursor: url(https://raw.githubusercontent.com/coob113/fancy-cursors/master/red-cross1.png) 64 64, auto !important;
    font-family: "Silkscreen", sans-serif;
}

body {
    font-family: "Silkscreen", sans-serif;
    background-color: var(--clr-surface-a20);
    color: var(--clr-primary-a50);
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

    --sb-track-color: var(--clr-surface-a20);
    --sb-thumb-color: var(--clr-primary-a20);
    --sb-size: 7px;
}

body::-webkit-scrollbar, #notice-container::-webkit-scrollbar {
    width: var(--sb-size)
}

body::-webkit-scrollbar-track, #notice-container::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 15px;
}

body::-webkit-scrollbar-thumb, #notice-container::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 15px;
}

@supports not selector(::-webkit-scrollbar) {
    body {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

.blocname-image {
    margin-right: 55px;
}

#notice-container {
    background-color: var(--clr-surface-a10);
    padding: 20px;
    border-radius: 8px;
    -webkit-box-shadow: 0 4px 8px rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.05);
    width: 70%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    scroll-behavior: auto;
    overflow: auto;
}

#notice-container div {
    margin-bottom: 5px;
}

.notice-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

#notice-info {
    margin-bottom: 20px;
    text-align: left;
}

#options-list {
    list-style-type: none;
    padding: 0;
}

#options-list button {
    background-color: #1a7587;
    color: var(--clr-light-a0);
    border: none;
    border-radius: 4px;
    padding: 10px;
    margin: 5px 0;
    width: 100%;
    font-size: 15px;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
    text-transform: capitalize;
    font-family: "Silkscreen", sans-serif;
    cursor: url(https://raw.githubusercontent.com/coob113/fancy-cursors/master/red-cross2.png) 64 64, auto !important;
}

#options-list button:hover {
    background-color: var(--clr-primary-a30);
}

#result {
    margin-top: 20px;
    font-weight: bold;
}

.correct {
    color: #7CFC00;
}

.incorrect {
    color: #FF6F61;
}

#translation-note {
    margin-top: 20px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
}

#score-container {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}