:root {
        /* BG COLORS */
        --background-color:rgb(72, 11, 11);;
        --content-background-color: white;
        --sidebar-background-color: white;

        /* TEXT COLORS */
        --text-color: black;
        --sidebar-text-color: black;
        --link-color: black;
        --link-color-hover: rgb(48, 45, 45);

        /* TEXT: */
        --font: basteleur;
        --heading-font: ouroboros;
        --font-size: 12px;

        /* OTHER STUFF */
        --margin: 40px;
        --padding: 24px;
        --border: black 2px solid;
        --round-borders: 4px;
        --sidebar-width: 300px;
    }

    /****** SETTINGS *****/
    * {
        box-sizing: border-box;
    }

    body {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        font-size: var(--font-size);
        margin: 0;
        padding: var(--margin);
        color: var(--text-color);
        font-family: var(--font);
        line-height: 1.2;
        background: var(--background-color);
        background-image: url(backgrounds/redsparkle.gif);
    }


    ::selection {
        /* this show the color of the text highlighted by users */
        background: rgba(183, 221, 255, 0.611);
    }

    .container {
        height: 800px;
        width: 900px;
        border: 10px solid transparent;
        box-sizing: border-box;
        border-image: url(https://i.postimg.cc/QM9dMFhq/cloud.png) 50 round;
    }

    .container-full {
        width:100%;
        height:100%;
        overflow-y:auto;
        background:#fff;
        color:black;
    }

    /******* LAYOUT *******/
    .layout {
        width: 100%;
        display: grid;
        grid-template-columns: 2fr 5fr;
        grid-template-rows: 50px 1fr;
        margin-top: 65px;
        line-height: 2em;
    }


    header {
        grid-column: 2;
        grid-row: 1;
        box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 56%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
        filter: drop-shadow(0px 0px 1px #424242);
        -webkit-filter: drop-shadow(0px 0px 1px #424242);
        background:white;
        color:black;
        width:calc(100% - 20px);
        height:fit-content;
        max-height:190px;
        overflow-y:auto;
        border-radius:10px;
        padding:8px 10px 10px 10px;
        box-sizing:border box;
        margin:0 auto;

    }

    aside {
        grid-column: 1;  
        grid-row: 1 / 3;
    }

    .left {
    
    }

    .left img {
        border-top: 3.5px double #000;
        border-left: 3.5px double #000;
        border-right: 3.5px double #000;
        border-bottom: 3.5px double #000;
    }

    .current-mood {
        height: 300px;
        width: 300px;
        margin-left: 0;
        overflow: scroll;
        border: #000 1px solid;
        border-radius: 4px;
    }

    .left h4 {
        border-top: 3.5px double #000;
        border-left: 3.5px double #000;
        border-right: 3.5px double #000;
        border-bottom: 3.5px double #000;
        border-radius: 4px;
    }

    ol li {
        list-style-type:circle;
    }

    .left .badges {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    main {
        grid-column: 2;
        grid-row: 2;
        height: 500px;
    }

    .content {
        border: black 2px solid;
        text-align: center;
        height: 700px;
        width: 500px;
        margin-left: 35px;
        margin-top: 15px;
        border-top: 3.5px double #000;
        border-left: 3.5px double #000;
        border-right: 3.5px double #000;
        border-bottom: 3.5px double #000;
        overflow: scroll;
    }