@font-face {
  font-family: 'Request';
  src: url('../fonts/Request.ttf') format('opentype');
}

footer {
  background: black;
  color: white;
  text-align: center;
  font-family: 'Request';
  font-size: 0.6rem;
  padding: 6px 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 -2px 10px #4A90E2;
}

.footer-content a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: #4A90E2;
}

.footer-logo {
  height: 22px;
  margin-bottom: 4px;
}

@media screen and (max-width: 768px) {
  footer {
    font-size: 0.55rem;
    padding: 5px 6px;
  }

  .footer-logo {
    height: 18px;
    margin-bottom: 2px;
  }

  .footer-content p {
    margin: 2px 0;
  }
}