@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Roboto:wght@300;400;700&display=swap');

:root {
    /*dark tones*/
    --nord0: #2E3440;
    --nord1: #3B4252;
    --nord2: #434C5E;
    --nord3: #4C566A;
    /*light tones*/
    --nord4: #D8DEE9;
    --nord5: #E5E9F0;
    --nord6: #ECEFF4;
    /*blue tones*/
    --nord7: #8FBCBB;
    /*highlight*/
    --nord8: #88C0D0;
    /*primary*/
    --nord9: #81A1C1;
    /*secondary*/
    --nord10: #5E81AC;
    /*tertiary*/
    /*special tones*/
    --nord11: #BF616A;
    /*error*/
    --nord12: #D08770;
    /*danger*/
    --nord13: #EBCB8B;
    /*warning*/
    --nord14: #A3BE8C;
    /*success*/
    --nord15: #B48EAD;
    /*uncommon function*/
}

body {
    overflow: none;
}

/* width */
::-webkit-scrollbar {
    width: 0.5vw;
    border-radius: 0.3rem;

}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 0.3rem;

}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
}


section {
    max-width: 90vw;
    margin: auto;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    height: 80vh;
}

#totalChartWrapper {
    height: 40vh;
    width: 35vw;
    float: right;
    padding: 1rem;
    border-radius: 0.5rem;
}

#normalChartWrapper {
    height: 100%;
    width: 100%;
    float: right;
    border-radius: 0.5rem;
}

#theme {
    position: absolute;
    padding: 0;
    margin: 0.5rem;
    background: none;
    top: 0;
    right: 0;
    z-index: 2;
}

.challengeBox {
    background-color: var(--nord11);
    position: fixed;
    z-index: 1;
    padding: 0;
    margin: 0;
    display: none;
}

footer {
    z-index: 0;
}

#cbTop, #cbBottom {
    left: 0;
    width: 100vw;
    height: 2vh;
}

#cbTop {
    top: 0;
}

#cbBottom {
    bottom: 0;
}

#cbLeft, #cbRight {
    top: 0;
    width: 2vw;
    height: 98vh;
}

#cbLeft {
    left: 0;
}

#cbRight {
    right: 0;
}

/* 
    <section id="answerWrapper">
        <div id="answerItem"></div>
    </section> */

#answerWrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

#answerItem{
    background-color: var(--nord11);
    flex-grow: 1;
    flex-basis: auto;
    margin: 0.1rem;
    width: 20%;
    height: 20%;
}