html,
body {
    margin: 0px;
    padding: 0px;
}



#drawingCanvas {

    display: block;
    padding: 0px;
    margin: 0px;
    /* border: 2px solid #000; */
    /* overflow: hidden; */
    z-index: -1;



}



/*Draggable Menu*/

@property --a {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;

}

@keyframes spin {
    to {
        --a: 360deg;
    }
}

#menuBox {
    background: conic-gradient(from var(--a), #ffab00 150deg, #ffff73 180deg, #ffab00 230deg);
    animation: spin 6s linear infinite;
    width: 110px;
    height: 310px;
    position: fixed;
    top: 100px;
    left: 100px;
    border-radius: 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 105;
}

#menuContent {
    border-radius: 5px;

    width: 100px;
    height: 300px;
    background-color: #A4CCD4;
    z-index: 100;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: baseline;
}

#handle {
    width: 100%;
    height: 40px;
    background-color: #26788E;
    padding: 0;
    margin: 0;
    display: grid;
    place-items: center;
    /* Centers horizontally and vertically simultaneously */

    border-radius: 5px 5px 0px 0px;
}

h6 {
    margin: 0;
    padding: 0%;
}

.menuBtn {
    display: block;
    width: 5.5rem;
    margin: 0.25rem;
}


.btn {
    margin: 0.175em;
    width: 2em;
    height: 2em;
    border-radius: 10%;
    outline: 1px;
}

#colorBtns {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;


}


#orangeBtn {
    background-color: orange;
}

#blueBtn {
    background-color: blue;
}

#blackBtn {
    background-color: black;
}






/* card */




#card {
    padding: 10px;
    border-radius: 10px;
    background-color: grey;
    filter: drop-shadow(10px 10px 4px orange);


    height: 50%;
    width: 50%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;

    z-index: 100;
}

h1,
p {
    text-align: center;
    margin: 2rem;
}