@font-face {
  font-family: 'DaZheng';          /* 自定义字体名称 */
  src: url('source/taisyoKatujippoi7-subset.ttf') format('truetype');
  font-weight: normal;                  /* 可选：指定字重 */
  font-style: normal;                   /* 可选：指定样式 */
  font-display: block;                   /* 可选：优化加载行为 */
}
/* 普通状态 */
a {
  color: #2b2b2b;
  text-decoration: none;
}

/* 鼠标悬停时 */
a:hover {
  color: #0d5bae;           /* 悬停时变为蓝色或其他颜色 */
  text-decoration: underline; /* 可选：悬停时显示下划线 */
}

/* 点击瞬间（激活状态） */
a:active {
  color: #0d5bae;
}

/* 已访问过的链接 */
a:visited {
  color: #666;
}
.homepage_head {
  display: flex;
  justify-content: center;    /* 水平居中 */
  flex-direction: column;   /* 改为垂直方向 */
  align-items: center;    /* 垂直方向靠上 */
  min-height: 40vh;          /* 确保容器有足够高度，可根据需要调整 */
  /* 或者设定固定高度，例如 height: 80vh; */
}
.homepage_head h1 {
  margin-top: 37vh;
  font-family: 'DaZheng', cursive;
  font-size: clamp(32px, 6vw, 70px);
}
.homepage_nav {
  margin-top: 2rem;            /* 标题与导航栏之间的间距 */
  display: flex;
  gap: 1.5rem;                 /* 导航链接之间的间距 */
  font-family: 'DaZheng', cursive;
  font-size: clamp(17px, 2vw, 26px);
}
