body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .container {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
  
  h1 {
    color: #333;
    margin-bottom: 20px;
  }
  
  .link-container {
    width: 100%;
    margin: auto;
  }
  
  .link-button {
    display: block;
    width: 60%;
    margin: 10px auto;
    padding: 15px 20px;
    color: white;
    background-color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background;
    color: 0.3s;
  }

  .profile {
    margin-bottom: 30px;
  }

  .profile-pic {
    display: block;
    width: 125px; /* Adjust the size as needed */
    height: 125px; /* Adjust the size as needed */
    border-radius: 50%; /* Makes the image round */
    margin: 0 auto; /* Centers the image horizontally */
    border: 3px solid #ffffff; /* Adds a white border around the image */
  }

/* .linkedin { background-color: #0077b5; }
.github { background-color: #333; }
.kaggle { background-color: #20beff; }
.twitter { background-color: #1da1f2; }
.medium { background-color: #000000; }
.substack { background-color: #ff5700; }
.chess { background-color: #11875d; } */

.link-button:hover {
    opacity: 0.2;
}
  