/* footer stlying */
.footer {
  background-color: #0d1b2a;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: clamp(12px, 1.5vw, 14px);
}

/* stick footer to bottom */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer, #footer {
  margin-top: auto;
}

/* scaling for mobile */
@media (max-width: 480px) {
  .footer {
    font-size: 13px; 
    padding: 14px 16px;
    word-break: break-word; 
  }
}