
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Azhar Kamar</title>
    <style>
        body {
            background: radial-gradient(#333, #000);
            margin: 0;
            width: 100vw;
            height: 100vh;
        }

        .container {
            background: url(azhar-kamar-avatar.png) bottom right no-repeat;
            width: 100vw;
            height: 100vh;
        }

        @media only screen and (max-width: 600px) {
            .container {
                background-size: 100%;
            }
        }
    </style>
</head>

<body>
    <div class="container">
    </div>
</body>

</html>