h1 { 
    text-align: center; 
    margin-top: 0; 
    padding-top: 20px; 
}

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
    padding-top: 50px;
}
.joke-container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}
.joke-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.joke-content p {
    margin: 10px 0;
    font-size: 1.3em;
    word-wrap: break-word;
}
.label {
    font-weight: bold;
}
button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.3em;
    cursor: pointer;
    background-color: white;
    color: black;
    border: 2px solid black;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

button:hover {
    background-color: #e0e0e0;
}

main { 
    padding-bottom: 100px;
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px; 
    background: white; 
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
}
 
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: transparent;
    padding: 10px 0;
}
    

