*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    background-color: rgb(45, 126, 163);
    top: 0px !important; 
}
.wrapper {
    background-color: snow;
    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: 20;
    bottom: -1px;
}
.opt-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
}
button {
    background-color: rgb(45, 126, 163);
    border: none;
    border-radius: 5px;
    padding: 5px;
}
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 {
    width: 1em;
    height: 1em;
    border: 1px solid #ddd;
}
.gridRow {
    display: flex;
}