@import "reset.css";

body {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    background-color: gainsboro;
    padding: 20px;
}

canvas {
    width: 800px;
    height: 800px;
    background-color: white;
    border-radius: 10px;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-options {
    display: flex;  
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.color-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: 5px solid white;
    transition: transfrom ease-in-out 1s;
}

.color-option:hover {
    transform: scale(1.1);
}

.btns {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

input#color {
    width: 50px;
    height: 50px;
    border-radius: 10%;
    background-color: white;
    border: 5px solid white;
}

input#line-width {
    width: 100px;
}

button {
    all: unset;
    width: 100px;
    height: 50px;
    border-radius: 25px;
    background-color: darkgray;
    border: 5px solid white;
    text-align: center;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17pt;
    transition: transfrom ease-in-out 1s;
}

button:hover {
    transform: scale(1.1);
}