@import "reset.css";

body {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    background-color: gainsboro;
    padding: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

canvas {
    width: 800px;
    height: 800px;
    border: 5px solid black;
    background-color: white;
    border-radius: 10px;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.color-option {
    width: 45px;
    height: 45px;
    border-radius: 17px;
    cursor: pointer;
    border: 5px solid white;
    border-radius: 50%;
    transition: transform ease-in-out .1s;
}

.color-option:hover {
    transform: scale(1.2);
}

.btns {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input#color {
    width: 50px;
    height: 50px;
    overflow: hidden;
}

button, label {
    all: unset;
    padding: 10px;
    text-align: center;
    background-color: royalblue;
    color: white;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    transition: opacity linear .3s;
}

button:hover {
    opacity: .5;
}

input#text {
    all:unset;
    padding: 10px 0px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    background-color: white;
}

input#file {
    display: none;
}