#celebrity-button,
#output-button {
    display: block;
    width: 100%;
    margin: 20px auto;
    font-size: 24px;
    padding: 20px;
    text-align: center;
    transition: transform 0.5s ease;
    background: #007bff;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

#output-button {
    display: none; /* Hide the button initially */
    transform: scale(0); /* Set initial scale to 0 */
}

#output-button.revealed {
    display: block; /* Show the button */
    transform: scale(1); /* Enlarge the button */
}