body {
    margin: 0;
    overflow: hidden;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}
canvas {
    display: block;
}
#text-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #333;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}
.main-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}
.translations {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.translation {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}
