body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f4f4f4;
}

#lexicon {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: auto;
}

.tile {
    display: flex;
    align-items: center;
    width: 250px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

canvas {
    border: 1px solid #ddd;
    margin-right: 10px;
}

.text {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    gap: 5px;
}

.pronunciation {
    font-size: 16px;
}

