body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #60c1eb;
    margin: 0;
}

#container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#robot {
    width: 150px;
    margin-bottom: 20px;
    transition: transform 0.2s;
}

#textToSpeak {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    font-size: 16px;
}

button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#output {
    margin-top: 20px;
    font-size: 18px;
    color: #c00505;
}

/* Talking animation */
@keyframes talking {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
