        body {
            font-family: Georgia, 'Times New Roman', Times, serif;
            text-transform: capitalize;
            background:url(photo-1512486130939-2c4f79935e4f.jpeg) no-repeat;
            align-content: center;
            background-position: 50%;
            background-size: cover;
        }
            
        @keyframes fadeIn{
            0%{
                opacity: 0;
            }
            100%{
                opacity: 1;
            }
        }

        .profile-card {
            width: 400px;
            margin: 50px auto;
            text-align: center;
            background-color:transparent;
            padding: 20px;
            border: 4px solid aqua;
            height: auto;
            border-radius: 70px;
            box-shadow: 0 0 10px rgb(0, 0, 0, 0.1);
            animation: fadeIn 2s ease-in-out forwards;
        }
          
         @keyframes rotateText{
             0%{
                transform: rotate(0deg);
             }
             100%{
                transform: rotate(0deg);
             }
         }

        .text{
           animation: rotateText 3s linear infinite;
        }
        
        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 20px auto;
           filter: grayscale(100%);
            transition: filter 0.5s ease-in-out;
        }

        @keyframes changeTextColor{
            0%{
                color: aquamarine;
            }
            25%{ 
               color: chocolate;
            }
            50%{
                color: turquoise;
            }
            75%{
                color: black;
            }
            100%{
                color: teal;
            }
        }

        .text2{
            font-size: 25px;
            font-weight: 700;
            color: blueviolet;
            animation: changeTextColor 8s ease-in-out infinite;
        }
        
        .profile-image:hover {
            filter: grayscale(0%);
            transform: scale(2.1);
            transition: transform 0.5s ease-in-out;
        }
        
        .profile-name {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 10px;
            animation: pulse 2s infinite;
        }

         @keyframes scaleUp{
            0%{
                transform: scale(1);
            }
            100%{
                transform: scale(1.5);
            }
         }
        .social-media-icons {
            margin-top: 20px;
            animation: scaleUp 3s ease-in-out infinite;
        }
        

       .social-media-icons a {
           display: inline-block;
            margin-right:0 15px;
            font-size: 90px;
            transition: transform 0.3s ease, color 0.3 ease;
            font color : 2s ;
        }
        
        .social-media-icons a:hover {
            transform: translateY(-8px);
            color:gray;
        }
     
