#canvasBox {
    margin: 10px;
    height: 100%; 
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;  
}  

canvas {
    border: 1px solid black;
    width: 80vw;
    height: 80vw;
    display: block;
    margin-top: 10px;
}
.boxUnder {
    display: flex;
    width: 100%;
    flex-direction: row;
    margin-top: 10px;
    justify-content: space-evenly;
    align-items: center;  
}
#bitmap {
    margin-top: 10px;
    font-family: monospace;
    white-space: pre;
}
.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px; 
    justify-content: center;
    margin-top: 10px;
    }
.btn {
    background: linear-gradient(135deg, #6b73ff, #000dff);
    color: white;
    padding: 60px 60px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(107, 115, 255, 0.4);
    transition: background 0.3s ease, transform 0.2s ease;
}
.btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgba(0, 13, 255, 0.6);
}

#clear {
    background: linear-gradient(135deg, #ff7f7f, #b20000);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.4);
}
#clear:active {
    box-shadow: 0 2px 4px rgba(217, 0, 0, 0.6);
}