@charset "UTF-8";
@import "./reset.css";

body {
    background-color: #f6f9fc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0px;
}

#canvas {
    width: 800px;
    height: 500px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

#controls {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#controls .controls_util {
    width: 600px;
    display: flex;
    justify-content: space-between;
}

#controls .controls_range {
    margin-bottom: 40px;
}

#controls .controls_btns {
    margin-bottom: 40px;
}

.controls_btns button {
    all: unset;
    cursor: pointer;
    background-color: #ffffff;
    padding: 5px 0px;
    width: 80px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.6);
    font-weight: bold;
    font-size: 14px;
}

.controls_btns button:active {
    transform: scale(0.98);
}

#controls .controls_colors {
    display: flex;
}

.controls_colors .controls_color {
    width: 50px;
    height: 50px;
    margin: 0px 10px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
