@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');

*{
    box-sizing:border-box;
}

body{
    font-family:"Poppins", sans-serif;
    margin:0px;
    padding:0px;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    min-height:100vh;
}

canvas{
    border: 1px solid rebeccapurple;
}

.toolbox{
    background-color: rebeccapurple;
    
    width:800px;
    padding:1rem;
    display:flex;
}

.toolbox > * {
    user-select: none;
    background-color: #fff;
    font-size:2rem;
    border:none;
    padding:0.25rem;
    width:50px;
    height:50px;
    margin:0.35rem;
}

.toolbox > *:last-child {
    margin-left:auto;
}
