html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1; /* This pushes the footer down */
  margin-top: 10vh;
}

.footer {
  background-color: #19171b;
  color: white;
  text-align: center;
  padding: 1rem 3rem;
  bottom: 0;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 0.5rem;
}

.footer p {
  text-align: left;
  margin: 0;
  font-size: 0.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}

