<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>sparxmind.com</title>
    <style>
        html, body {
            height: 100%; 
            margin: 0;    
            padding: 0;   
            overflow: hidden; 
        }

        body {
            display: grid;
            place-items: center;
            background-color: #369;
			color: #147; 
        }

        .smiley {
            font-size: 50vmin;
            font-family: monospace;
            white-space: nowrap; 
            
        }
    </style>
</head>
<body>

    <div class="smiley">:)</div>

</body>
</html>