body {
    font-family: 'Roboto Mono', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: rgb(198, 235, 197);
    color: rgb(251, 242, 207);
}

#content {
    flex: 1;
    display: flex;
    align-items: center;
}

#frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(250, 112, 112);
    padding: 0 36px 36px;
    border-radius: 16px;
}

#main {
    display: flex;
    gap: 32px;
    background-color: lightslategray;
    padding-left: 32px;
    border-radius: 12px;
}

#settings {
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: 250px;
    justify-content: center;
    align-self: center;
    border-radius: 8px;
    padding: 0px 24px;
    color: rgb(251, 242, 207);
}

#settings h2 {
    text-align: center;
}

#container {
    display: flex;
    flex-wrap: wrap;
    width: 600px;
    height: 600px;
}

button {
    font-size: 16px;
    font-family: 'Roboto Mono', monospace;
    margin-bottom: 16px;
    background-color: transparent;
    border-color: rgb(251, 242, 207);
    border-radius: 4px;
    color: rgb(251, 242, 207);
}

#footer {
    background-color: rgb(161, 194, 152);
    color: rgb(251, 242, 207);
    width: 100%;
    text-align: center;
}

a {
    color: white;
}

a:visited {
    color: white;
}

#pen-color-picker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

#grid-color-picker {
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#toggle-container {
    display:flex;
    justify-content: space-between;
}