* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Cabin Sketch", sans-serif;
}

:root {
    --neon-color: #0D3B66;
    --sunshine-color: #FAF0CA;
    --bliss-color: #F4D35E;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--sunshine-color);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    gap: 10px;
    background-color: var(--neon-color);
}
.container h1 {
    color: var(--sunshine-color);
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #080101;
    height: 400px;
    width: 400px;
    background-color: white;
}

.controlPanel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.gridSizeValue {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 30px;
    background-color: var(--sunshine-color);
    color: var(--neon-color);
    padding: 5px;
    border-radius: 5px;
    font-weight: 700;
}

#grid {
    accent-color: var(--bliss-color);
}

#reset {
    height: 40px;
    width: 70px;
    border-radius: 10px;
    background-color: var(--bliss-color);
    color: var(--neon-color);
    font-size: 20px;
    font-weight: 700;
}

#selectColor {
    height: 40px;
    width: 90px;
    border-radius: 10px;
    background-color: var(--bliss-color);
    color: var(--neon-color);
    font-size: 20px;
    font-weight: 700;
}

.githubLink {
    font-size: 20px;
    color: var(--sunshine-color);
}

.githubLink a{
    color: var(--bliss-color);
}