* {
  padding: 0;
  margin: 0;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
}

body {
  background: url("/public/images/pc.jpg?3") center / cover no-repeat #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "PingFang SC",
    "Microsoft YaHei", "Hiragino Sans GB";

  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: black;
}

.media {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.media .icon-link {
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid black;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
}

.icon-link .icon {
  width: 16px;
  height: 16px;
}

.footer {
  display: flex;
  align-items: center;

  /* flex-direction: column; */
  gap: 10px;
  min-height: 40px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

.footer .icon-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 4px;
  cursor: pointer;
  font-size: 12px;
  color: #ddd;
}

.footer .icon-link:hover {
  color: #fff;
  fill: #fff;
}

@media screen and (max-width: 768px) {
  body {
    background: url("/public/images/mobile.jpg?3") center / cover no-repeat #000;
  }

  .footer {
    gap: 5px;
    flex-direction: column !important;
  }
}
