/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Header Styles */
header {
  background-color: #2c3e50;
  color: white;
  padding: 15px 20px; /* Increased padding for better spacing */
  display: flex;
  justify-content: space-between;
  align-items: center; /* Align logo and navbar vertically */
}

header .logo h1 {
  font-size: 1.5rem;
  display: inline;
}

nav ul {
  list-style-type: none;
  display: flex; /* Use flexbox to align navbar items */
  margin-top: 0; /* Remove any margin */
}

nav ul li {
  display: inline;
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 5px 0; /* Padding to make it feel more centered */
}

nav ul li a:hover {
  color: #3498db;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 40px;
  background-color: #3498db;
  color: white;
}

.hero h2 {
  font-size: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #e74c3c;
  padding: 15px 30px;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px; 
  margin-bottom: 20px; 
}

.cta-button:hover {
  background-color: #c0392b;
}

/* Content Section */
.content {
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.content p,
.content ul,
.content ol {
  margin-bottom: 20px;
}

/* Add left margin to the ordered list (instructions) */
.content ol {
  margin-left: 20px; /* Add left margin to space out the list */
  padding-left: 20px; /* Optional: adds padding inside the list for better readability */
}

footer {
  text-align: center;
  background-color: #2c3e50;
  color: white;
  position: fixed;
  padding: 20px 0;
  bottom: 0;
  width: 100%;
}

footer strong {
  font-weight: bold; /* Bold the quizbowlr text */
}
