
/* Reset some default browser styles */
body, h1, p, a {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }
  
  /* Apply background color to the whole body */
  body {
    /* Added linear-gradient background */
    background: linear-gradient(#6c5e58, #8f7d75, #9a8981, #a6958d, #b2a299, #efeae3);
  
    background-size: 100% 100%; /* Make background cover the full viewport */
    
    color: black;
    font-family: Arial, sans-serif;
    text-align: center;
    width: 50%;
    margin-right: auto;
    margin-left: auto;
  }
  
  .main {
    min-height: 100dvh;
    padding: 64px 16px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  /* Style the header section */
  .header {
    padding: 10px;
  }
  
  .profile-picture {
    width: 320px;
  }
  
  /* Style the links section */
  .links-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .link-wrapper {
    z-index: 0;
    overflow: hidden;
    margin-bottom: 16px;
    border: 2px solid rgb(0, 0, 0);
    transition: none 0s ease 0s;
    box-shadow: rgb(0, 0, 0) 8px 8px 0px 0px;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    width: calc(100% - 12px);
    border-radius: 20px;
  }
  
  .button {
    hyphens: auto;
    white-space: normal;
    background: none;
    color: inherit;
    transition: box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, border-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, background-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
    overflow-wrap: break-word;
    word-break: break-word;
    padding-left: 66px;
    padding-right: 66px;
  
    margin: 0px;
    border: none;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    text-align: center;
    cursor: pointer;
    background: none;
    text-decoration: none;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: auto;
    position: relative;
    padding: 16px 20px;
    width: 100%;
    appearance: none;
    box-sizing: border-box;
    vertical-align: middle;
  }
  
  .link-wrapper:hover {
    transform: translate(4px, 4px);
    box-shadow: rgb(0, 0, 0) 4px 4px 0px 0px;
  }
  
  .thumbnail {
    left: 4px;
    width: 46px;
    height: 46px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 50%;
  }
  
  p {
    font-size: 18px;
    position: relative;
    hyphens: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
    font-weight: 500;
    line-height: 1.5;
  }
  
  .button-pic {
    border-radius: 50%;
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: initial;
  }
  
  .socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-top: 20px;
  }
  
  .icon-link {
    padding-left: 16px;
    padding-right: 16px;
    color: inherit;
    text-decoration: underline;
    transition: transform 0s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    z-index: 0;
  }
  
  .icon-link:hover {
    transform: scale(1.2);
  }
  
  .icon {
    margin-top: 8px;
    fill: rgb(0, 0, 0);
    width: 38px;
    height: 38px;
  }
  
  @media screen and (max-width: 649px) {
    body {
      width: 90%;
    }
  
    .main {
      padding: 5px 5px 5px;
    }
  
    .header {
      margin-top: 10px;
      padding: 10px;
    }
  
    p {
      font-size: 16px;
      padding: 5px;
      margin-left: 10px;
    }
  
    .profile-picture {
      width: 300px;
    }
  
    .link-wrapper {
      margin-bottom: 20px;
      border: 2px solid rgb(0, 0, 0);
      box-shadow: rgb(0, 0, 0) 5px 5px 0px 0px;
      border-radius: 12px;
    }
  
    .button {
      padding: 15px 65px;
    }
  
    .thumbnail {
      width: 60px;
      height: 60px;
    }
  
    .icon-link {
      padding-left: 15px;
      padding-right: 15px;
    }
  
    .icon {
      width: 40px;
      height: 40px;
    }
  
    .socials {
      padding-top: 20px;
      padding-bottom: 100px;
    }
  }