body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1, h2 {
    color: #333;
}

.section {
    margin-bottom: 30px;
}

#letterCanvas {
    border: 1px solid #000;
    margin-bottom: 10px;
    background-color: #fff;
    cursor: crosshair;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

#editor {
    border: 1px solid #ddd;
    min-height: 200px;
    padding: 10px;
    margin-top: 10px;
    font-size: 24px; /* Aumentar el tamaño de la fuente */
    line-height: 1.5;
}

@font-face {
    font-family: 'CustomFont';
    src: url('') format('truetype');
}

.custom-font {
    font-family: 'CustomFont', Arial, sans-serif;
}