@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins";
    cursor: default;
}

body {
    background-color: rgb(191, 191, 186);
}

header {
    text-align: center;
    padding: 20px;
    background: #b5b4b4;
    box-shadow: 0px 2px 5px rgb(159, 159, 159);
}

.rule{
    text-align: center;
    margin: 20px;
}

.main {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 75.5vh;
    padding: 100px;
}

#sketch-area {
    height: 500px;
    width: 500px;
    display: grid;
    background-color: white;
    box-shadow: 0px 1px 5px rgb(110, 109, 109);
    cursor: pointer;
    overflow: hidden;
}

.properties {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

/*  */
#color-wheel {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid rgb(32, 32, 32);
    cursor: pointer;
    height: 80px;
    width: 80px;
    box-shadow: 0px 0px 4px rgb(152, 151, 151);
}

#color-wheel::-webkit-color-swatch {
    border-radius: 50%;
    border: none;
}

#color-wheel::-moz-color-swatch {
    border-radius: 50%;
    border: none;
}

/*  */


h3 {
    text-decoration: underline;
}

button {
    padding: 10px;
    border: 2px solid rgb(32, 32, 32);
    cursor: pointer;
}

button:hover {
    padding: 10px;
    background-color: rgb(224, 226, 228);
    cursor: pointer;
}

.row-wise {
    display: flex;
    flex-direction: row;
}

#column {
    display: flex;
    flex-direction: column;
}

.grid-element {
    user-select: none;
}

footer {
    background: #1F2937;
    color: white;
    padding: 20px;
    text-align: center;
}

.conjunction {
    font-size: 15px;
}

footer a{
    text-decoration: none;
    color: white;
}

footer a:hover{
    text-decoration: underline;
}