body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #28966a, #28966a);
    margin: 10px auto;
  }

  .container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 24px;
    background: linear-gradient(to bottom right, #627e4600, #0b835300);
  }

  .profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
  }

  .link {
    display: block;
    padding: 15px;
    max-width: 100%;
    background: linear-gradient(to bottom right, #a5be8c8f, #16ac70);
    text-decoration: none;
    color: #333;
    border-radius: 12px;
    margin: 18px auto;
    transition: all .3s ease-in-out;
    /* Center the links horizontally */
  }

  .link img {
    width: auto;
    height: 80px;
    /* Set the height of the image */
    margin-right: 10px;
    /* Spacing between image and text */
    border-radius: 50%;
  }

  .link:hover { 
    transform: scale(1.1);
    background: linear-gradient(to bottom right, #e09d62, #c25609);
  }

  @media (min-width: 1200px) {
    .container {
      max-width: 1140px;
      margin: 10px auto;
    }
  }

  @media (min-width: 992px) {

    .container {
      max-width: 960px;
      margin: 10px auto;
    }
  }

  @media (min-width: 768px) {
    .container {
      max-width: 720px;
      margin: 10px auto;
    }
  }

  @media (min-width: 576px) {
    .container {
      max-width: 540px;
      margin: 10px auto;
    }
  }