body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: whitesmoke;
    min-height: 100vh;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ff6f61;
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

#logo {
    width: 60px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

h1, h1#title {
    margin-left: 1rem;
    color: #222;
    margin-top: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

div.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: 2rem;
}

div #jokeDisplay1, div #jokeDisplay2, div #jokeDisplay3, div #jokeDisplay4 {
    margin: 1.5rem 0;
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(253, 116, 116, 0.12);
    text-align: left;
    width: 100%;
    max-width: 500px;
    min-width: 250px;
    transition: box-shadow 0.2s;
    font-size: 1.1rem;
    color: #444;
    position: relative;
}

div #jokeDisplay1:hover, div #jokeDisplay2:hover, div #jokeDisplay3:hover, div #jokeDisplay4:hover {
    box-shadow: 0 8px 32px rgba(253, 116, 116, 0.18);
}

button {
    padding: 0.75rem 2rem;
    background: linear-gradient(90deg, #ff6f61 0%, #ffb88c 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(253, 116, 116, 0.12);
    transition: background 0.2s, box-shadow 0.2s;
}

button:hover {
    background: linear-gradient(90deg, #ffb88c 0%, #ff6f61 100%);
    box-shadow: 0 4px 16px rgba(253, 116, 116, 0.18);
}

.joke-section {
    background: linear-gradient(135deg, #fff6f6 0%, #ffe3e3 100%);
    margin: 0 auto 2.5rem auto;
    width: 90%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(253, 116, 116, 0.13);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 2.5rem;
    transition: box-shadow 0.2s;
    position: relative;
    top: 0;
}

.joke-section:hover {
    box-shadow: 0 12px 40px rgba(253, 116, 116, 0.18);
}

.jokeImage1 {
    margin-left: 1000px;
}


