* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #815854;
    color: black;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

button:hover {
    cursor: pointer;
    scale: 1.1;
}


.container {
    background-color: #F9EBDE;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 1.5rem;
    border-radius: 0.5rem;
    gap: 1rem;
    box-shadow: 0 0 1rem .1rem black;
}

.brush-colors {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.brush-colors button {
    width: 4rem;
    height: 4rem;
    outline: 4px solid black;
}

canvas {
    background-color: white;
    width: 640px;
    height: 640px;
    outline: 4px solid black;
    margin-bottom: 1rem;
}
.options-container {
    display: flex;
    height: 100%;
    justify-content: space-evenly;
}
.brush-size-container, .canvas-size-container {
    display: flex;
    gap: 0.4rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
}
.options-container select {
    border: 1px solid black;
    font-size: 1.4rem;
}
.options-container button {
    background: lightcoral;
    padding: .5rem .8rem;
    font-size: 1rem;
    border-radius: .3rem;
    border: 1px solid black;
}