body {
    background-color: rgb(160, 168, 172);
  
    color: #9dfc72;
    font-family: "Open Sans", sans-serif;
    letter-spacing: 2px;
  }
  
  .profile-picture {
    display: block;
    margin-left: auto;
    margin-right: auto;
  
    margin-top: 10%;
    height: auto;
    max-width: 100px;
  
    border-radius: 50%;
  }
  
  .profile-name {
    text-align: center;
  
    padding: 30px;
    font-size: 28px;
  }
  
  .links {
    text-align: center;
    margin-top: 20px;
    border: 1px solid rgb(142, 28, 150);
    border-width: 2px;
    padding: 20px;
  
    width: 290px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  
    border-radius: 40px;
  
    font-size: 18px;
  }
  
  a {
    text-decoration: none;
  
    color: purple;
    transition: color 1s;
  }
  
  a:hover {
    color: black;
    background-color: white;
  }