.logo_wrapper {
  position: fixed;
  top: 12px;
  left: 12px;
  max-width: 180px;
}
footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  padding: 12px 12px 6px;
}
.footer-text {
  font-size: 12px;
  text-align: center;
  color: #fff;
}
.footer-links {
  display: flex;
  flex-direction: row;
  align-content: inherit;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  margin: 8px 0;
}
.footer-links a {
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .logo_wrapper {
    max-width: 120px;
  }
}
@media screen and (max-width: 576px) {
  .logo_wrapper {
    max-width: 80px;
  }
}
