* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --x: 45deg;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #c4977a, #333);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
  }

/* 设置页脚的样式 */
footer {
  position: fixed; /* 固定在底部 */
  bottom: 0;
  width: 100%;
  background-color: #aab1b9; /* 底部背景颜色 */
  padding: 10px 0; /* 内边距 */
  text-align: center; /* 文本居中 */
}

/* 设置版权信息和链接的样式 */
footer p, footer a {
  margin: 0;
  padding: 0;
  color: #1478d0; /* 文本颜色 */
}

footer a {
  text-decoration: none; /* 去掉链接的下划线 */
  color: #007bff; /* 链接颜色 */
  font-weight: bold; /* 链接加粗 */
}

footer a:hover {
  text-decoration: underline; /* 鼠标悬停时显示下划线 */
}
  .container {
    text-align: center;
  }
  
  .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  h1 {
    color: #fff;
    margin-bottom: 30px;
  }
  
  .description {
    color: #ccc;
    margin: 20px 0;
  }
  
  .button-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .styled-button {
    position: relative;
    width: 150px;
    height: 55px;
    display: inline-block;
    border-radius: 5px;
  }
  
  .styled-button i {
    position: absolute;
    inset: -2px;
    display: block;
    border-radius: 5px;
  }
  
  .styled-button i,
  .styled-button i:nth-child(2) {
    background: linear-gradient(var(--x), #c4977a, #333, #333, #6699ff);
  }
  
  .styled-button i:nth-child(2) {
    filter: blur(10px);
  }
  
  .styled-button span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    border: 1px solid rgba(199, 167, 167, 0.07);
    border-radius: 3px;
    background-color: rgba(199, 167, 167, 0.07);
    overflow: hidden;
  }
  
  .styled-button span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-color: rgba(199, 167, 167, 0.07);
    transform: skew(25deg);
  }


  @media (max-width: 768px) {
   .styled-button {
      width: 120px;
      height: 45px;
    }
  }

