﻿


.pen-tools {
    display: flex;
    justify-content: space-around;
    align-content: center;
    width: 80%;
    margin: auto;
}

label{
    margin: 0 0 0 0;
}
/*.button {
    margin-left: 10px;
    background-color: red;
    border-radius: 100px;
    color: white;
    cursor: pointer;
}
    
.pensize {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 16px;
}*/
.board {
    width: 800px;
    margin: auto;
}

.drawing-colors {
    display: flex;
    margin-bottom: 10px;
}

.color-circle {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    margin-left: 5px;
    border: 1px solid black;
    cursor: pointer;
}

.canvas {
    background-position: center;
    background-size: 100%;
    border-top: 1px dashed rgba(211, 211, 211, .8);
    border-bottom: 1px dashed rgba(211, 211, 211, .8);
    margin: auto;
}

.active {
    transform: scale(1.3);
}


