 .joke-container {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
}

#h1joke {
    margin-bottom: 1rem;
    color: #34623F;
}    


#joke {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

#newJokeButton {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    background-color: #34623F;;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: limegreen;
} 