body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;

    color: #333;

    height: 100dvh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#new-joke-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
}

#new-joke-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    transition: transform 0.3s;
}

.container …{
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.joke {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 600px;
    text-align: center;
    margin-top: 50px;
}

.context {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: center;
}