body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #2b2b2b);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .container-top {
    position: relative;
  }

  .profile-image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
  }

  .profile-image {
    width: 120px;
    height: 120px;
  }
  
  h1 {
    font-size: 3em;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 0;
  }
  
  .emoji {
    position: absolute;
    top: 0;
    right: -30px;
    font-size: 3em;
  }

  .contact-link {
    display: block;
    font-size: 1.2em;
    color: #00c3ff;
    text-decoration: none;
    margin: 0.5em 0;
    transition: color 0.3s, transform 0.3s;
  }
  
  .contact-link:hover {
    color: #ffffff;
    transform: scale(1.05);
  }

  .instagram-icon {
    width: 25px;
  }
  