body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            background-color: #f4f4f4;
        }

        header {
            background-color:Aqua;
            position: fixed;
            top: 0;
	    font-weight: bold;	
            width: 100%;
            padding: 6px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .logo {
            font-size: 24px;
            width: 40px; /* Set width to 40px */
            height: 40px; /* Set height to 40px */
            color: #fff;
            font-weight: bold;
            margin-right: 10px;
        }

        .title {
            color: Black;
            font-weight: bold;
            font-size: 24px;
            font-weight: 600;
        }

        .subtitle {
            font-size: 15px; /* Adjust the font size as needed */
            padding: 10px;
            margin-top: 10px;
			font-weight: bold;
            color: #007BFF; /* Change text color */
            text-align: center; /* Center align the text */
        }

        .image-container {
            margin: 20px 0;
        }

        .profile-image {
            border-radius: 50%;
	    text-align: center;
            border-radius: 30px 8px; 
            border: 3px solid DeepSkyBlue; 
            box-shadow: 3px 6px blue; 
            width: 100px; aspect-ratio: 1;
	    display: block;
            margin-left: auto;
            margin-right: auto;
        }
    
        .footer {
	    text-align: center;
	    align-items: center;
	    position: absolute; 	
            left: 0;
            bottom: 0;
            color: white;
            cursor: pointer;
            background-color: hsl(0, 0%, 20%); 
	    text-decoration: none;	
		font-size: 12px;
            border-radius:5px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
	    border: 2px solid green;
            box-shadow: 3px 6px DeepPink;
            border-top-color: DarkMagenta;
	}