html,
body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #FDF1E6; /* Light beige background */
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #FDF1E6; /* Light beige background */
}

/* Flexbox layout for the body */
body {
  display: flex;
  flex-direction: column;
}

/* The main content area should take all remaining space */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Navbar styles */
.navbar {
  background-color: #8B4513; /* Warm brown for the navbar */
  color: white;
}

/* Navbar brand */
.navbar-brand {
  font-size: 24px;
  color: white;
}

/* Jumbotron section */
.jumbotron {
  background-color: #D2691E; /* Medium orange-brown tone */
  color: white;
  padding: 50px 20px;
  text-align: center; /* Center the text */
  position: relative;
}

/* Main heading */
h1 {
  font-size: 36px;
  color: #ffffff;
}

/* Subheading in jumbotron */
.jumbotron p {
  margin: 0;
  padding: 0;
}

/* Subheading in container */
.container h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: #8B4513; /* Darker brown */
}

/* List group items */
.list-group-item {
  border: none;
  background-color: #FFFFFF; /* White background */
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #8B4513; /* Text color matching the navbar */
}

/* Links inside list items */
.list-group-item a {
  text-decoration: none;
  color: #8B4513; /* Dark brown link color */
  font-weight: bold;
}

.list-group-item a:hover {
  color: #D2691E; /* Hover effect with the medium orange-brown tone */
}

/* Footer will naturally stay at the bottom */
footer {
  background-color: #8B4513; /* Matching footer color with navbar */
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 2rem;
}
