body {
    font-family: sans-serif;
    margin: 0;
    padding: 15px;
    background-color: #333333;
  }
  .wrap {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .profile {
    text-align: center;
    color: #FFF;
  }
  .photo {
    border-radius: 50%;
  }
  .profile_name {
    font-weight: bold;
    display: block;
  }
  .at {
    font-size: 13px;
  }
  .links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .links ul li {
    margin: 14px 0;
  }

  .link {
    padding: 14px;
    display: block;
    background-color: #09a679;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: ease all 0.3s;
    color: #FFF;
  }
  .link:hover {
    opacity: 0.9;
  }
  .card {
    padding: 10px;
    background-color: #FFF;
    border-radius: 4px;
  }
  .card h3 {
    margin: 0;
    color: #202024;
  }
  .card p {
    margin: 5px 0;
    font-size: 13px;
    color: #202024;
  }
  img{
      width: 80px;
      height: auto;
  }
  .double-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.double-links ul li {
    flex-basis: calc(50% - 5px);  /* Assume 10px is your desired space between the items */
    box-sizing: border-box;
    margin-bottom: 20px; /* Adjust the space between rows as per your requirement */
}

.double-links ul li:nth-child(odd) {
    margin-right: 10px;  /* Assume 10px is your desired space between the items */
}
.double-links {
    margin: 10px 0 -20px 0;
}
.pulse {
    animation: pulse 1s 2 ease-in-out alternate;
  }
  @keyframes pulse {
    from { transform: scale(1.0); }
    to { transform: scale(1.1); }
  }
  