


/* General page styling */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  margin: 20px;
  background: #fafafa;
  color: #333;
}
header {
    background-color: #ffcc66;
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
header a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
header a:hover {
    color: #ff6600;
}



h1 {
    color: #333;
}

h2 {
    color: #cc3300;
}

a {
    text-decoration: none;
    color: #007BFF;
    font-size: 1.2em;
}
a:hover {
    text-decoration: underline;
}

/* Navigation links */
nav {
  margin-bottom: 30px;
  text-align: center;
}

nav a {
  margin: 0 10px;
  padding: 6px 12px;
  text-decoration: none;
  background: #4a90e2;
  color: white;
  border-radius: 4px;
  font-weight: bold;
}

nav a:hover {
  background: #357ac8;
}

/* Section styling */
section {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 300px; /* adds vertical spacing between sections */
}

section h2 {
  margin-top: 0;
  color: #444;
}

/* Joke list styling */
ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}


       
    
   
