/* Typography */

html {
  font-family: "Roboto", sans-serif;
}

@media (min-width: 576px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  html {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 20px;
  }
}

.icons-social i {
  font-size: 3em;
}

/* Custom Styles */

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  padding: 0 30px;
  text-align: center;
}

main > .intro {
  font-family: "Reem Kufi", sans-serif;
  font-size: 3.75em;
  font-weight: 600;
}

main > .tagline {
  font-size: 1.5rem;
  margin: 1.5rem 0;
  font-weight: 100;
}

.icons-social i {
  padding: 10px;
}

.icons-social a {
  text-decoration: none;
}

.devto {
  margin-bottom: -0.2rem;
}

.devto svg {
  margin-bottom: -0.2rem;
  margin-left: 0.675rem;
  width: 2.65rem;
  height: 2.65rem;
}

.custom-footer {
  position: absolute; /* 设置为绝对定位 */
  bottom: 0; /* 固定到页面底部 */
  right: 0; /* 固定到页面右侧 */
  z-index: 0; /* 设置 z-index 层级 */
  display: flex; /* 启用 Flex 布局 */
  width: fit-content; /* 宽度根据内容自动调整 */
  justify-content: flex-end; /* 内容靠右对齐 */
  border-radius: 12px; /* 圆角 (Tailwind 的 `rounded-xl` 是 12px) */
  padding: 8px 20px; /* 上下 8px，左右 20px 的内边距 (p-2 是 8px，px-5 是 20px) */
  color: #6b7280; /* 字体颜色为灰色 (Tailwind 的 `text-gray-500` 是 #6b7280) */
}
