body {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #000;
}

body::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("./images/main-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: blur(6px);
    transform: scale(1);

    z-index: 0;
}
input, select, button {
    box-sizing: border-box;
    height: 27px;
}

section {
    width: 500px;
    z-index: 1;
}

div.form {
    width: 100%;
    display: block;
}

div.form label {
    width: 100%;
    display: block;
    margin-bottom: 5px;
}

div.form input {
    width: 100%;
    margin-bottom: 10px;
}

div.form select {
    width: 100%;
    margin-bottom: 10px;
}

#result {
    margin-top: 30px;
    width: 100%;
    height: 100%;
    margin-right: 5px;
    margin-left: 5px;
}

div.flex {
    display: flex;
    align-items: center;
}

input.color-picker {
    width: 25px !important;
}