.footer {
  background-color: #333;
  color: #ffffff;
  text-align: center;
  display: flex;
  font-size: 14px;
  justify-content: center;
  padding: 10px;
  position: sticky;
  bottom: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  transition: transform 0.3s ease;
}

.footer.hide-footer {
  transform: translateY(100%);
}

.footer p {
  margin: 0;
  font-weight: 500;
}
