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

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Macland.gr</title>

    <style>
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
        }

        body {
            background: #292929;
            color: #fff;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .content {
            text-align: center;
            width: 100%;
            max-width: 550px;
        }

        .logo {
            display: block;
            width: 195px;
            height: auto;
            margin: 0 auto 40px;
        }

        .tweet-wrapper {
            overflow: hidden;
            border-radius: 12px;
        }

        .blog-link {
            display: inline-block;
            margin-top: 32px;
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            letter-spacing: 0.02em;
            opacity: 0.7;
            transition: opacity 0.2s;
        }

        .blog-link:hover {
            opacity: 1;
        }


        @media (max-width: 550px) {
            .logo {
                width: 160px;
            }
        }
    </style>
</head>

<body>

    <div class="content">
        <img src="logo.svg" alt="Macland.gr logo" class="logo">
        <div class="tweet-wrapper">
            <blockquote class="twitter-tweet" data-theme="dark">
                <p lang="en" dir="ltr">After 5 years of complete inactivity, I've decided to archive one of my most loved blog projects: <a href="https://twitter.com/maclandgr?ref_src=twsrc%5Etfw">@maclandgr</a> I might revive it at some point in the future… if I find a way for it to be useful and relevant! 🤔</p>&mdash; P. Tsamoudakis (@tsamoudakis) <a href="https://twitter.com/tsamoudakis/status/1269958373988016128?ref_src=twsrc%5Etfw">June 8, 2020</a>
            </blockquote>
            <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
        </div>
        <a href="https://www.tsamoudakis.com" class="blog-link" target="_blank" rel="noopener">Meanwhile, find me over at <span>tsamoudakis.com</span> &#8594;</a>
    </div>

</body>

</html>
