* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: min(5%, 3rem) min(20%, 100px);
    background-color: rgb(148, 0, 0);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: min(2%, 20px);
}

h1 {
    margin-top: 15px;
    color: rgb(255, 183, 0);
}

#options {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

#drawing-table {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    height: 500px;
    width: 500px;
    cursor: pointer;
}

button {
    background-color: rgb(255, 183, 0);
    color:rgb(148, 0, 0);
    width: 110px;
    height: 26px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

#dimensions {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

label {
    color: rgb(255, 183, 0);
}

input {
    background-color:rgb(255, 183, 0);
    color: rgb(148, 0, 0);
    font-weight: 600;
    width: 100px;
    text-align: center;
}

#colors {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#table-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

#change-color {
    width: 30px;
}