/* General Page Styling */
body {
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

/* Title */
h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Doodle Animation */
.doodle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #00f7ff;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff;
    }
    50% {
        box-shadow: 0 0 20px #00f7ff, 0 0 40px #00f7ff;
    }
    100% {
        box-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff;
    }
}

/* Text display for recognized speech */
#output {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
    text-align: center;
    min-width: 200px;
    max-width: 80%;
}

/* Start Button */
button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #00f7ff;
    color: black;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

button:hover {
    background: #00c8d4;
}
