    body {
      height: 100vh;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(45deg,rgba(67,79,240,1) 0%, rgba(148,187,233,1) 20%, rgba(148,233,228,1) 40%, rgba(148,233,176,1) 60%, rgba(217,233,148,1) 80%, rgba(233,148,148,1) 100%);;
      background-size: 400% 400%;
      animation: gradientAnimation 20s ease infinite;
    }

    @keyframes gradientAnimation {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    .container {
      display: flex;
      align-items: center;
      position: relative;
    }
    
      .profile-picture {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-image: url('profile_pic.png');
    background-size: cover;
    background-position: center;
  }
  
    canvas {
      position: absolute;
      top: 0;
      left: 0;
    }


    .box {
      width: 300px;
      height: 500px;
      background-color: rgba(0, 0, 0, 0.5); 
      transition: background-color 0.6s ease;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      font-family: "Baskerville", serif; 
      color: white; 
      user-select: none; 

    }

    .box:hover {
      background-color: rgba(0, 0, 0, 0.9); 

    }

    .box:hover h1 {
      transform: scale(1.1); 
    }

    h1 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 30px;
      transition: transform 0.4s ease; 
    }

    h2 {
      text-align: center;
      font-size: 24px;
      font-family: "Baskerville", serif; 
    }

    .social-bar {
      display: flex;
      flex-direction: column;
      align-items: flex-start; 
      position: absolute;
      top: 55%;
      right: 310px; 
      transform: translateY(-70%);
      margin-top: 20px;
      height: 200px; 
    }

    .social-icon {
      display: block; 
      width: 90px; 
      margin-bottom: 10px;
      color: white;
      font-size: 18px;
      transition: transform 0.3s ease, font-weight 0.3s ease, background-color 0.3s ease; 
      font-family: "Baskerville", serif; 
      text-decoration: none; 
      border-radius: 20px; 
      padding: 10px 10px;
      text-align: center;
      font-weight: normal; 
      background-color: rgba(0, 0, 0, 1); 
    }

    .social-icon:hover,
    .button:hover {
      transform: scale(1.2); 
      background: linear-gradient(45deg, #2a2a72, #009ffd); 
      background-size: 200% 200%;
      background-position: 0% 80%;
      animation: gradientAnimation 15s infinite;
    }

    .button {
      display: inline-block;
      padding: 10px 20px;
      font-size: 18px;
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      border: none; 
      border-radius: 20px; 
      transition: background-color 0.3s ease; 
      font-family: "Baskerville", serif;  
      text-decoration: none; 
    }