<html>
    <head>
        <title>Matthew R Jones - Web Developer</title>

        <link href="https://fonts.googleapis.com/css?family=Neucha" rel="stylesheet">

        <style>
            body {
                background-color: #202020;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 95%;
            }

            div {
                background-color: #ffffff;
                width: 20vmax;
                height: 20vmax;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                animation-name: bouncein;
                animation-duration: 500ms;
            }

            p {
                text-align: center;
                color: #202020;
                font-family: 'Neucha', cursive;
                font-size: 1.5vmax;
                animation-name: fadein;
                animation-duration: 500ms;
                animation-delay: 500ms;
                animation-fill-mode: forwards;
                opacity: 0;
            }

            @keyframes bouncein {
                from {height: 0px;
                      width: 0px; }
                to {height: 20vmax;
                    width: 20vmax;}
            }

            @keyframes fadein {
                from {opacity: 0;}
                to {opacity: 1;}
            }
        </style>

    </head>
    <body>
        <div>
            <p>New portfolio site coming soon.<br /><br />-MJ<br /><br /><a rel="me" href="https://fluttercommunity.social/@matthewjones">Mastodon</a></p>
        </div>
    </body>
</html>
