body {
  background-color: #111827;
  color: white;
  margin: 0;
  padding: 0;
}

.main-container {
  margin: 20px auto;
  width: 95%;
  display: grid;
  gap: 20px;
}

/* Navbar */

.navbar {
  border-radius: 10px;
  box-shadow: 4px 4px 4px white;
}
.custom-navbar {
  background-color: #020617;
  border-bottom: 1px solid #1f2937;
}

.custom-navbar .navbar-brand img {
  filter: brightness(1.1);
}

.custom-navbar .nav-link {
  color: #e5e7eb;
  font-weight: 500;
}

.custom-navbar .nav-link:hover {
  color: #38bdf8;
}

.custom-navbar .nav-link.active {
  color: #60a5fa;
}

.navbar img {
  height: 60px;
  width: 250px;
}
/* End of Navbar */

/* Content */

.banner img {
  width: 100%;
  height: 250px;
}

.content {
  display: grid;
  gap: 20px;
}

/* End of Content */

/* Footer */
.footer {
  background-color: midnightblue;
  border: 1px solid white;
  padding: 3px;
  text-align: center;
  border-radius: 10px;
}
/* End of Footer */
