body {
  
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
  padding: 20px;
  padding-bottom: 50px; /* Add padding equal to the footer's height */
}

.footer {
  text-align: center;
  padding: 10px;
  background-color: #2b2b2b;
  
  width: 100%;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #ffffff;
  position: static; /* Footer is no longer fixed */
}
