/* General Styles */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Hero Section */
.hero {
    background-color: #333;
    color: white;
    padding: 50px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
    margin-top: 10px;
}

/* Googly Eyes */
.eyes {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px; /* Create a gap between header and eyes */
    margin-bottom: 20px; /* Add some gap before the joke */
}

.eye {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pupil {
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    transform: translate(0, 0);
}

/* Section Styles */
.section {
    padding: 40px 20px;
    flex-grow: 1;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #444;
    font-style: italic;
}

.section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Footer Styles */
footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    margin-top: auto;
}
