<!doctype html>
<title>Hodor Holding</title>
<style>
    body {
        display: grid;
        grid-template-columns: 25% auto 25%;
        grid-template-rows: 10% auto 10%;
        background-color: #174842;
        color: #d2d5a8;
    }

    div {
        grid-column-start: 2;
        grid-column-end: span 1;
        grid-row-start: 2;
        grid-row-end: span 1;
    }

    a {
        color: #d6a549;
    }
</style>
<body>
<div>
    <header>
        <h1>Hodor Holding AS</h1>
        <p>A holding company by <a href="https://twitter.com/t_husoy">@t_husoy</a></p>
    </header>
</div>
