body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: white;
}

.container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.7;
}

.content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
}

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

.mic-button {
    font-size: 1.5rem;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    background-color: #ff5722;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mic-button:hover {
    background-color: #e64a19;
}

#outputText {
    margin: 20px 0;
    font-size: 1.2rem;
}

.hidden {
    display: none;
}

button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#yesButton {
    background-color: #4caf50;
    color: white;
}

#yesButton:hover {
    background-color: #388e3c;
}

#noButton {
    background-color: #f44336;
    color: white;
}

#noButton:hover {
    background-color: #d32f2f;
}
