body,
html {
    height: 100%;
    margin: 0;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    background-color: #004aad;
    background: url(../assets/img/background6.png);
    /*#f0f0f0;*/
    /* Light background */
}

.main {
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    /* White background for the joke container */
}

.button-container {
    text-align: center;
    padding: 20px;
    display: block;
}

.joke {
    font-size: 1.5rem;
    color: #333333;
    /* Dark text for readability */
}

.jokebutton {
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #004aad;
    /*#007bff*/
    /* Adjust color to fit the design */
    color: white;
    font-size: 1rem;
}

button:hover {
    background-color: #fff;
    color: #004aad;
    /*#0056b3*/
    /* Darker shade for hover effect */
}