html, body {
    margin: 0;
    padding: 0;
    height: 100%
}

body {
    background-color: lightgreen;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

h1 {
    font-family: 'Space Mono', monospace;
    margin: 0;
    padding: 1em;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}

.sketch-pad {
    display: flex;
    justify-content: center;
    gap: 3em;
}


.container {
    height: 70vh;
    aspect-ratio: 1;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: white;
    overflow: hidden;
    box-shadow: 1px 1px 20px green;
}

.container > div {
    aspect-ratio: 1;
}

.control-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    padding: 2em 2em;
    gap: 2em;
    background-color: white;
    border-radius: 20px;
    box-shadow: 1px 1px 20px green;

}

h2 {
    font-family: 'Space Mono', monospace;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    margin: 0;
    padding: 0;
}

button {
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    font-weight: bold;
    color: black;
    background-color: lightgrey;
    border: none;
    border-radius: 10px;
    padding: 1em;
    cursor: pointer;
}

.rainbow, .opacity {
    background-color: black;
    color: white;
}

.clear{
    margin-top: auto;
}

p {
    font-family: 'Space Mono', monospace;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    margin-top: auto;
    padding-bottom: 10px;
}