/* ベースのスタイル設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #3636e0, #8c5fff);;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
  }
  
  .container {
    text-align: center;
    width: 100%;
    max-width: 400px;
    background: rgba(237,245,255,0.9);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  /* ヘッダーのスタイル */
  header {
    margin-bottom: 20px;
  }
  
  .avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
  h1 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  
  p {
    font-size: 14px;
    color: #666;
  }
  
  .ids {
    font-size: 14px;
    color: #fff;
  }
  
  /* リンクのスタイル */
  .links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 20px;
    transition: all 0.3s ease;
  }
  
  .link:hover {
    background-color: #45a049;
    transform: translateY(-3px);
  }
  
  .link:active {
    transform: translateY(1px);
  }
  
  /* レスポンシブデザイン */
  @media (max-width: 600px) {
    .container {
      width: 90%;
      padding: 15px;
    }
  
    h1 {
      font-size: 22px;
    }
  
    .link {
      font-size: 14px;
    }
  }