@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Indie+Flower&display=swap');
*{
    box-sizing: border-box;
}
body{
    margin: 0;   
    background-color: rgb(238, 242, 247);
}
/* ***********************************HEADING********************************************** */
.heading_container{
    height: 8vh;
    width: 100vw;
    z-index: 10;
    display: flex;
    align-items: center;
    background-color: #252324;
    position: absolute;
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    font-size: 2.3rem;
    padding: 0.3rem 1.5rem;
    color: rgb(226, 222, 222);
}
.logo{
    height: 95%;
    width: 10%;
}
.title{
    height: 100%;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ***********************************MAIN AREA********************************************** */
.working_area{
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
}
.canvas_area{
    max-height: 100vh;
    width: 100vw;
    position: relative;
    top: 8vh;
    /* z-index: 2; */
    transition: 0.5s ease-in-out;
}
.canvas{
    height: 100vh;
    width: 100vw;
    background-color: rgb(238, 242, 247);
    background: transparent;
}
/* ***********************************TOOLBAR********************************************** */
.toolbar_container{
    height: 100vh;
    width: 30vh;
    position: absolute;
    top: 8vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    z-index: 200;
    background-color: #161516e1;
    box-shadow:
    0 2.8px 2.2px rgba(0, 0, 0, 0.034),
    0 6.7px 5.3px rgba(0, 0, 0, 0.048),
    0 12.5px 10px rgba(0, 0, 0, 0.06),
    0 22.3px 17.9px rgba(0, 0, 0, 0.072),
    0 41.8px 33.4px rgba(0, 0, 0, 0.086),
    0 100px 80px rgba(0, 0, 0, 0.12),
    0 100px 80px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease-in-out;
}
.draw_material{
    height: 45%;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.prop{
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.tool{
    height: 2%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: 0.3s ease-in-out;
    font-family: 'Caveat', cursive;
    font-weight: bold;
    font-size: 1.3rem;
    cursor: pointer;
}
.tool:hover{
    background-color: #2a2c2cef;
    box-shadow: 1px 1px 10px 0px rgba(32, 32, 32, 0.965) inset;
}
.img_box{
    height: 2rem;
    width: 2rem;
}
img{
    max-height: 100%;
    max-width: 100%;
    margin-right: 0.5rem;
}
h4{
    width: 80%;
    margin-left: 0.5rem;
    color: rgb(226, 222, 222);
}
.active_tool{
    background-color: #2a2c2cef;
    box-shadow: 1px 1px 10px 0px rgba(32, 32, 32, 0.965) inset;
}
.image_input{
    display: none;
    
}
.seperator{
    margin: 0 1rem;
    border-bottom: 1px solid rgb(78, 77, 77);
}