html, body {
  width: 100%;
  height: 100%;
  margin: 0px;
}

.footer {
  display: flex;
  align-items: center;
  max-width: 100%;
  min-height: 76px;
  width: 100%;
  border-top: 1px solid lightgray;
}
.footer-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
}
.footer-contents {
  width: 100%;
  text-align: start;
  color: black;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px;
}
.guide-wrapper {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 310px;
}
.guide-link {
  text-align: center;
  color: black;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px 5px;
}


@media screen and (max-width: 800px) {
  .footer-wrapper {
    flex-direction: column;
    padding: 0px;
  }
  .guide-wrapper {
    gap: 10px;
    padding: 0px 10px 20px 10px;
  }
  .footer-contents {
    text-align: center;
    padding: 20px 10px 0px 10px;
  }
}