    * {
        margin: 0;
        padding: 0;
    }
    
    body {
        /* display: flex;
    flex-direction: column;
    justify-items: center; */
        font-family: 'Montserrat', 'Roboto', sans-serif;
        font-size: 12px;
        background-color: #f2dfce;
        /* touch-action: none; */
        height: 100vh;
    }
    
    .hindPic {
        position: absolute;
        width: 120px;
        right: 5px;
        top: 5px;
        visibility: hidden;
    }
    
    .showUp {
        visibility: visible;
    }
    
    .container {
        display: flex;
        flex-direction: column;
        width: 80%;
        height: auto;
        margin: 20px auto 0px;
        /* justify-items: center; */
        align-content: center;
        box-sizing: border-box;
        justify-content: center;
        /* border: 1px solid black; */
        position: relative;
    }
    
    .container .top {
        /* height: 160x; */
        width: auto;
        /* border: 1px solid black; */
        /* box-sizing: border-box; */
    }
    
    .container .top img {
        display: block;
        margin: 0 auto;
        /* width: 200px; */
        height: 180px;
        position: relative;
        z-index: 3;
    }
    
    .pic {
        animation-name: zoomIn;
        animation-iteration-count: 1;
        animation-duration: 1s;
        animation-timing-function: ease-out;
    }
    
    @keyframes zoomIn {
        0% {
            top: -200px
        }
        80% {
            top: 20px
        }
        85% {
            top: -15px
        }
        90% {
            top: 10px
        }
        100% {
            top: 0px
        }
    }
    
    #pic:hover {
        transform: scale(1.05);
        cursor: pointer;
    }
    
    .img2 {
        position: absolute;
        bottom: 40px;
        right: 20px;
        z-index: 5;
        display: inline-block;
    }
    
    #correctImg {
        display: none;
    }
    /* #correctImg img {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    display: inline-block;
} */
    
    .middle {
        box-sizing: border-box;
        height: 4rem;
        width: 100%;
        margin: 20px auto;
        position: relative;
        overflow: hidden;
        background-color: rgba(238, 66, 102, 1);
        box-shadow: 4px 6px 12px 5px rgba(0, 0, 0, 0.2);
        padding: 50px 70px;
        color: rgba(238, 66, 102, 1);
        border-radius: 5px;
        /* border: 1px solid black; */
        /* border-bottom: 5px solid black; */
    }
    
    .middle:hover {
        cursor: pointer;
        background-color: rgb(84, 13, 110);
        color: rgb(84, 13, 110);
    }
    
    #hiddenWord {
        /* display: inline-block; */
        text-align: center;
        font-size: 3.5rem;
        position: relative;
        /* padding: 5px 10px; */
        font-weight: bolder;
        margin-top: 5px;
        line-height: 0%;
        /* display: none; */
        /* color: rgba(238, 66, 102, 1); */
    }
    
    #single .mainPanel {
        height: 80%;
        /* border: 1px solid black; */
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        min-width: 100%;
        min-height: 200px;
    }
    
    #dragPanel {
        /* height: 30%; */
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        min-height: 300px;
        margin-bottom: 20px;
        /* border-bottom: 2px solid rgb(104, 103, 103); */
        box-shadow: 0px 3px 10px 8px rgba(0, 0, 0, 0.2);
        /* border: 1px solid black; */
        border-radius: 10px;
    }
    
    .divDestination {
        display: inline-block;
        margin: 10px 5px;
        min-width: 7rem;
        min-height: 250px;
        margin: 20px 10px;
        text-align: center;
        /* padding: 5px 10px; */
        font-size: 6rem;
        font-weight: bold;
        border-radius: 5px;
        background-color: rgb(59, 206, 172);
        /* transition: opacity, ease-in; */
    }
    
    .smallerDropzone {
        min-width: 4rem;
        min-height: 100px;
        margin: 5px 5px;
    }
    
    .singleCard {
        display: inline-block;
        /* border: 1px solid; */
        margin: 5px 10px;
        text-align: center;
        padding: 5px 20px;
        font-size: 5rem;
        font-weight: bold;
        border-radius: 5px;
        min-width: 50px;
        background-color: rgba(59, 206, 172, 0.4);
        box-shadow: 4px 3px 10px 0px rgba(0, 0, 0, 0.4);
        position: relative;
        touch-action: none;
        cursor: pointer;
        /* align-self: flex-end; */
        /* z-index: 3; */
       
        /* left: 35%; */
        /* transform: translateX(-50%); */
        /* animation-name: showIn;
        animation-duration: 2s;
        animation-iteration-count: 1; */
    }
    
    @keyframes showIn {
        0% {
            bottom: -200px;
        }
        86% {
            bottom: 10px
        }
        88% {
            bottom: -8px
        }
        92% {
            bottom: 6px
        }
        96% {
            bottom: -3px
        }
        98% {
            bottom: 2px
        }
        100% {
            bottom: 0px
        }
    }
    
    /* .singleCard:hover {
        background-color: rgb(14, 173, 105);
        color: white;
        cursor: pointer;
        box-shadow: 5px 8px 8px 5px rgba(0, 0, 0, 0.4);
    } */

    .bravo{
        background-color: rgb(84, 13, 110);
        color: white;
        border-radius: 5px;
        opacity: 1;
        min-width: 60px;
        animation-name: flash;
        animation-iteration-count: 3;
        animation-duration: 0.3s;
        animation-timing-function: ease;
    }

    .sortable-drag{
        opacity: 0.7;
    }

    .sortable-ghost{
        border-left: 15px solid rgb(238, 66, 102);
    }

    @keyframes flash {
        0% {
            background-color: rgb(84, 13, 110)
        }
        100% {
            background-color: rgba(14, 173, 105, 0.5)
        }
    }
   .smallerSingleCard {
        padding: 5px 5px;
        font-size: 3rem;
        font-weight: bold;
        border-radius: 5px;
        min-width: 4rem;
        left: 15%;
        transform: translateX(-100%);
        margin: 5px 6px;
    }
    
    .active {
        /* touch-action: none; */
        background-color: rgb(238, 66, 102);
    }
    
    .can-drop {
        background-color: rgb(84, 13, 110);
        color: white;
        border-radius: 5px;
        opacity: 1;
        min-width: 60px;
        /* padding: 0 5x; */
    }
    
    .drop-target {
        background-color: rgb(84, 13, 110);
        animation-name: flash;
        animation-iteration-count: 5;
        animation-duration: 2s;
        animation-timing-function: linear;
    }
    
    .showWord {
        /* visibility: visible; */
        display: inline-block;
        color: white;
    }
    
   
    /* .droppedParent {
    padding: 0;
} */
    
    .btn {
        width: 60px;
        height: 60px;
        opacity: 0.5;
        background-color: rgba(44, 56, 224, 0.4);
        font-size: 14px;
        cursor: pointer;
        border-radius: 50%;
        top: 40%;
        /* touch-action: none; */
    }
    
    btn:hover {
        background-color: rgba(255, 231, 11, 0.815);
    }
    
    .pre {
        position: absolute;
        left: 10px;
    }
    
    .next {
        position: absolute;
        right: 10px;
    }
    
    .draggable {
        width: 25%;
        min-height: 6.5em;
        margin: 1rem 0 0 1rem;
        background-color: #29e;
        color: white;
        border-radius: 0.75em;
        padding: 4%;
        touch-action: none;
        user-select: none;
    }
    
    .fullPicDiv {
        position: absolute;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 5;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        top: 0;
    }
    
    .closeX {
        position: relative;
        left: 320px;
        top: 40px;
        color: blue
    }
    
    .closeX:hover {
        background-color: gold;
        border-radius: 50%;
        cursor: pointer;
    }
    
    .fullImg {
        width: 680px;
        border-radius: 10px;
    }
    
    .demoBar {
        height: 40px;
        color: white;
        background-color: rgba(0, 0, 0, 0.8);
        bottom: 0px;
        position: absolute;
        width: 100%;
        font-size: 1rem;
        display: flex;
    }
    /* .demoBar p {
        padding: 5px 10px 5px 0px;
    } */
    
    .demo2 {
        width: 50%;
    }
    
    .demo2 p {
        padding: 5px 10px 5px 0px;
    }
    
    .updateStatus {
        width: 50%;
        border-left: 3px solid white;
    }
    
    .updateStatus p {
        padding: 5px 10px 5px 10px;
    }
    
    @media only screen and (max-device-width: 736px) {
        .container {
            height: 100%vh;
        }
        .container .top img {
            height: 120px;
        }
        .middle {
            height: 1rem;
        }
        #hiddenWord {
            font-size: 2rem;
        }
        .divDestination {
            min-width: 4rem;
            min-height: 4rem;
        }
        .singleCard {
            font-size: 2rem;
            min-width: 1rem;
            /* left: 35%;
            transform: translateX(-120%); */
        }
        .can-drop {
            min-width: 1rem;
            min-height: 1.5rem;
        }
        .drop-target {
            min-width: 4rem;
        }
        .fullImg {
            width: 360px;
        }
        .closeX {
            left: 160px;
        }
    }
    
    @media only screen and (max-device-width: 768px)and (orientation: landscape) {
        .container {
            height: auto;
        }
        .container .top img {
            height: 80px;
        }
        .middle {
            height: 50px;
            padding: 30px 70px;
        }
        .middle p {
            font-size: 1.5rem;
            top: -10px;
        }
        #hiddenWord {
            font-size: 2rem;
        }
        #dragPanel {
            min-height: 120px;
            margin-bottom: 5px;
        }
        .divDestination {
            min-width: 4rem;
            min-height: 4rem;
        }
        .singleCard {
            font-size: 2rem;
            min-width: 1rem;
            /* left: 35%;
            transform: translateX(-120%); */
        }
        .can-drop {
            min-width: 1rem;
            min-height: 1.5rem;
        }
        .drop-target {
            min-width: 4rem;
        }
    }
    /*
purple: rgb(84, 13, 110);
red: rgb(238, 66, 102);
yello: rgb(255, 210, 63);
cyanBlue: rgb(59, 206, 172);
green: rgb(14, 173, 105);
*/