body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
  }
  
  .list {
    text-align: center;
  }
  
  .list--title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .list--items {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
  }
  
  .list--items-item {
    display: inline;
  }
  
  .item-link {
    display: inline-block;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .item-link:hover {
    background-color: #007bff;
    color: #fff;
  }
  
  .image {
    margin-top: 20px;
  }
  
  .me {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #007bff;
  }
  
  .name {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }
  