blockquote {
  font-style: italic
}
/* Hide the title */
.title {
  display: none;
}
/* General text styling */
body {
  font-size: 18px; /* Increase the base text size */
  color: #333333; /* Set a nice dark grey color for the text */
  background-color: #f7f7f7; /* Set a light background color */
}

/* Navbar styling */
.navbar-inverse {
  background-color: #2c3e50; /* Dark navy color for navbar background */
  border-color: #1a252f; /* Border color for navbar */
}

.navbar-inverse .navbar-brand,
.navbar-inverse .navbar-nav > li > a {
  color: #ecf0f1; /* Light grey color for navbar text */
  font-size: 20px; /* Slightly larger font size for navbar */
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-nav > li > a:hover {
  color: #1abc9c; /* Highlight color when hovering over navbar items */
}

/* Footer styling */
footer {
  font-size: 16px; /* Standardize footer text size */
  color: #999999; /* Grey color for footer text */
  background-color: #2c3e50; /* Match navbar color */
  padding: 20px 0;
  text-align: center;
}

/* Custom headings */
h1, h2, h3, h4, h5, h6 {
  color: #34495e; /* Darker color for headings */
  font-family: 'Arial', sans-serif; /* Set a clean font for headings */
}

/* Links styling */
a {
  color: #2980b9; /* Light blue color for links */
  text-decoration: none;
}

a:hover {
  color: #3498db; /* Brighter blue when hovering over links */
  text-decoration: underline;
}

/* Other customizations */
.container {
  max-width: 1100px; /* Set a max width for better readability */
}

p {
  line-height: 1.6; /* Improve readability */
  margin-bottom: 15px;
}
