* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    color: #D3D9DC;
    font-family: 'Fira Code', Courier, monospace;
}

html, body {
    height: 100%;
}

body {
    display: flex; 
    flex-direction: column;  
    background-color: #001C29;
}

.header, .footer {
    display: flex;
    align-items: center;
    background-color: #001721;
    padding: 3rem 1.5rem;
}

.header {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 1);
    font-size: 1.5rem;
    font-weight: 900;
    height: 3rem;
}

.footer {
    height: 1.5rem;
    justify-content: center;
    box-shadow: 0px -4px 12px rgba(0, 0, 0, 1);
}

i {
    padding: 0 1rem;
    font-size: 2rem;
}

.main {
    display: flex;
    flex: 1;
}
.content {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: space-evenly;    
    width: 100%;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    gap: 3rem;
}

.right {
    margin-right: 8rem;
}

.sketch {
    height: 32rem;
    width: 32rem;
    display: flex;
    align-self: center;
    flex-wrap: wrap;   
}

#gridSizeLabel {
    font-weight: bold;
    font-size: 1.5rem;
}

button {
    width: 20rem;
    background-color: #0E2F3F;
    padding: 1rem 4rem;
    border: 1px solid #0E2F3F;
    border-radius: 2rem;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
}

.small-button {
    width: 9.5rem;
    padding: 1rem;
}

button:hover, .toggled {
    background-color: #194054;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 1);

}