 body {
            font-family: sans-serif;
            background-color: #222; /* Dark background */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            height: 100%;
            color: white;            
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            
        }
        
        .container {
            background-color: #333; /* Darker container background */
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            max-width: 400px;
            min-width: 229px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* More pronounced shadow */
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .profile-image {
            scale: 120%;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 10px;
            border: 3px groove deeppink; /* Subtle border */
        }
        

        .name {
            font-size: 1.5em;
            margin-bottom: 5px;
            color: #ddd; /* Lighter text */
        }

        .email-icon {
            font-size: 2.2em;
            margin-bottom: 20px;
            color: #888;
        }

        .welcome-message {
            font-size: 1.2em;
            margin-bottom: 10px;
        }

        .links-message {
            font-size: 0.9em;
            color: #888;
            margin-bottom: 20px;
        }

        .button {
            display: block;
            width: 100%;
            padding: 15px;
            margin-bottom: 10px;
            background-color: #444; /* Darker button */
            border: none;
            border-radius: 8px;
            color: white;
            text-align: left;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .button.with-background {
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            text-indent: 0px; 
			text-align: center;			
        }

        .button.with-background:hover {
            filter: brightness(0.9);
        }

        .pulsing-circle {               
                             
            border-top-right-radius: 50px;
            border-bottom-right-radius: 50px;
            border-top-left-radius: 50px;
            border-bottom-left-radius: 50px;
            

            animation: pulse 2.5s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.7; background-color: rgba(0, 47, 255, 0.466); }
            100% { transform: scale(1); opacity: 1; }
        }


        .button:hover {
            background-color: #555; 
        }

        .button-icon {
            margin-right: 10px;
            display: inline-block;
            vertical-align: middle;
        }

        .instagram-button {
            background-color: #c77000; 
            color: white;
        }

        .instagram-button:hover {
            background-color: #b36000; 
        }

        /* Responsive Design */
        @media (max-width: 500px) {
            .container {
                padding: 20px;
            }

            .profile-image {
                width: 120px;
                height: 120px;
            }
        }

       

        .arrowPlacement {
            display: flex;
            justify-content: flex-end;
            width: 100%;
        }

        .arrowStyle {
            height: 50px;
            width: 50px;
            margin: 50px 10px 0 0;
            animation: jump 2s ease-in-out infinite;
        }

        @keyframes jump {
            0%, 100% {
                transform: translateY(0); 
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .contentPlacement {
            height: 80vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .contentBlock {
            width: 350px;
            height: 400px;
            background-color: rgba(0, 0, 0, 0);
            box-shadow: 0 10px 20px rgba(140, 42, 225, 0.368); 
            border-radius: 10px;
        }

        .textStyle {
            font-size: 20px;
            font-family: Arial, Helvetica, sans-serif;
            font-weight: bold;
            color: aliceblue;
            text-align: center;
            margin: 50px 0 40px 0;
            line-height: 20px;
        }

        .firstElement {
            animation: pulse 1.5s infinite;
        }

        .lastElement {
            margin: 70px 0 0 0;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.1);
                color: rgb(121, 45, 187);
            }
            100% {
                transform: scale(1); 
                opacity: 1;
            }
        }