* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Shadows Into Light', cursive;
}

body {
    background: #f4c531;
}

.wrapper {
    background-color: aliceblue;
    width: 80vmin;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    padding: 40px 20px;
    border-radius: 8px;
}

label {
    display: block;
}

span    {
    position: relative;
    font-size: 22px;
    bottom: -1px;
}

.opt-wraaper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
}


button {
    background-color: #f4c531;
    border: none;
    border-radius: 5px;
    padding: 5px;
    /* cursor: pointer;
    font-size: 22px; */
}

input[type="color"] {

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    width: 70px;
    height: 40px;
    border: none;
    cursor: pointer;
}

input[type="color"]::-webkit-color-swatch {
    border-radius: 8px;
    border: 4px solid #000000;
}
input[type="color"]::-moz-color-swatch {
    border-radius: 8px;
    border: 4px solid #000000;
}
.gridCol {
    height: 1em;
    width: 1em;
    border: 1px solid #ddd;
}
.gridRow {
    display: flex;
}