:root {
    --dark: #353535;
    --bg-lighter: #fcfcfc;
    --bg-darker: #e9e9e9;
}

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

    user-select: none;
    -webkit-user-drag: none;

}

body {
    height: 100dvh;
    width: 100dvw;
    background-color: var(--bg-darker);

    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    color: var(--dark);
}

.container {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 20px;

    max-width: 1180px;
    margin: 0 auto;
    height: 100%
}

.header {
    position: absolute;
    left: 50%;
    translate: -50%;
    top: calc(50% - 430px);
}

.header>h1 {
    font-size: 52px;
}

#grid {
    width: 720px;
    height: 720px;
    max-width: 100%;

    display: flex;
    flex-wrap: wrap;

    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.config {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    width: 220px;
}

.color-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.color {
    border: none;
    outline: none;
    border-radius: 100%;
    height: 60px;
    width: 60px;

    cursor: pointer;
}

.button {
    background-color: var(--bg-lighter);
    border-radius: 6px;
    width: 100%;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 8px 0;
    font-size: 20px;

    cursor: pointer;
}

.button:not(.button-active):hover {
    background-color: var(--bg-darker);
}

.button-active {
    background-color: var(--dark);
    color: var(--bg-lighter);
}

.slider {
    appearance: none;
    background-color: var(--bg-darker);
    border-radius: 6px;
    height: 8px;
    width: 100%;
    cursor: pointer;
}

.box {
    padding: 16px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: var(--bg-lighter);
    border-radius: 6px;
    width: 100%;
}

svg {
    height: 20px;
}

.footer>.copyright {
    text-decoration: none;
    color: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 18px;
    font-weight: 600;

}

.footer>.copyright>img {
    height: 20px;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50%;
}