body{
    font-family: 'Micro 5', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    min-height: 100vh;
    width: 100%;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    text-align: center;
}

h1{
    font-size: 3em;
    margin-bottom: 20px;
    margin-top: 0px;
    padding-top: 0px;
}

label {
    font-size: 1.5em;
}

input {
    font-family: 'Micro 5', sans-serif;
    width: 60px;
    font-size: 1.5em;
    text-align: center;
    margin: 0 10px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: auto;
    opacity: 1;
}

button {
    font-family: 'Micro 5', sans-serif;
    font-size: 1.5em;
    padding: 0px 10px;
    cursor: pointer;
}

#controls {
    margin-bottom: 20px;
}

#color-picker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}

#grid {
    display: grid;
    border: 2px solid black;
    width: 500px;
    height: 500px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.site-footer {
    font-family: Arial, sans-serif;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 16px;
    color: #555;
    font-size: 14px;
}

.github-mark {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}