/* styles.css */
body {
    background-color: rgb(23,23,25);
    color: white;
}

.kaomoji-title {
    font-family: "Courier New", monospace;
    font-size: 50px;
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 30px auto;
}

.main-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    color: white;
    max-width: 700px;
    margin: 80px auto;
}

.contact-info {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  max-width: 700px;
  font-family: monospace;
  font-size: 20px;
  color: white;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.contact-info a {
  color: white;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.contact-info a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* 调整线条位置 */
  width: 0;
  height: 1px; /* 线条高度 */
  background-color: red; /* 线条颜色 */
  transition: width 0.4s ease-in-out;
}

.contact-info a:hover::after {
  width: 100%;
}
