.square {
    width: 10px;
    height: 10px;
    background-color: #fcfcfc;
}
.previewSquare {
    outline: 2px solid rgba(0, 0, 0, 0.2);
}
.erasePreview{
    background-color: #fcfcfc;
}
.drawn{
    width: 10px;
    height: 10px;
}
#canvas {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px; /* Adjust the height as needed */
    margin-bottom: auto;
}

#container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 10px); /* Adjust the column size as needed */
    width: 400px; /* Adjust the width as needed */
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
    margin-right: auto;
    margin-left: 40px;
        user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    
}
#title {
    display: flex;
    text-align: center; 
    align-items: center;
    justify-content: center;
    font-family: 'Monaco', Courier, monospace;
    font-size: 50px;
    margin: 0px 0px 0px 0px;
    margin-bottom: 60px;
    height: 80px;
    background-color: #1A120B;
    color: #E5E5CB;
}
#options {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: calc(50% - 360px); /* Adjust the margin as needed */
    
}

#options button {
    width: 120px;
    height: 40px;
    background-color: #D5CEA3;
    border: 1px solid #1A120B;
    border-radius: 5px;
    color: #1A120B;
    font-size: 20px;
}
#options button:hover {
    background-color: #E5E5CB;
}
#main-body {
    background-color: #3C2A21;
    margin: 0px;
}
