#footer-wrapper {
  width: 100%;
  height: 50px;
  padding: 0 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#footer-wrapper .credentials {
  font-family: "Share Tech Mono", monospace;
  color: #6f7385;
  text-align: center;
}
#footer-wrapper #footer-status {
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer-wrapper #footer-status p {
  font-family: "Share Tech Mono", monospace;
  color: #6f7385;
}
#footer-wrapper #footer-status #status-dot {
  margin-right: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00e676;
  animation: status-pulsation 1.5s ease-in-out infinite alternate;
}

@keyframes status-pulsation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.3;
  }
}
@media (max-width: 750px) {
  #footer-wrapper {
    height: 130px;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=footer.css.map */