<html>
<div id="flex-container">
    <div id="main-flex">
        <h1 style="text-align: center;">hex's hardware</h1>
        <div id="main-box">
            <div>
                <img src="img/l14g2-1.png">
                <img src="img/l14g2-2.png">
                <p>My Thinkpad L14 Gen 2 (AMD variant)</p>
                <b>Price: </b>220,- EUR.
                <p>Ryzen 5 5600U, with 16 gigs of RAM running Void Linux + GNOME. My daily driver.</p>
            </div>
            <div>
                <img src="img/latitude-1.png">
                <img src="img/latitude-2.png">
                <p>My librebooted Dell Latitude E5420</p>
                <b>Price: </b>Got it for free! But goes for around 20-30,- EUR usually. 
                <p>i5-2540M, with 8 gigs of RAM running Devuan Linux + XFCE.</p>
            </div>
            <div>
                <img src="img/atari.jpg">
                <p>My Atari 1040STf with monochrome display (I love this thing)</p>
                <b>Price: </b>75,- EUR
                <p>I'll upload some better pictures when I get the chance.</p>
                <p>Trying to get a SidecarT for this thing</p>
            </div>
            <div>
                <img src="img/homelab-1.png">
                <img src="img/homelab-2.png">
                <p>My homelab, featuring:</p>
                <ul>
                    <li>A Mikrotik CCR1009-8G-1S switch/router which I got for free.</li>
                    <li>Two librebooted Optiplex 3050 Micro's, which I got for 60$ total. Missing the PSU for one of them though.</li>
                    <li>A Linksys EA6500 running DD-WRT for wifi in my room (which I want to replace with a OpenWRT One).</li>
                    <li>My old custom build from 2020.</li>
                </ul>
            </div>
        </div>
    </div>
</div>

</html>

<style>
    @font-face {
        font-family: heartFont;
        src: url("ttf/rainyhearts.ttf");
    }

    img {
        width: 14vw;
        height: auto;
    }
    img:hover {
        width: 25vw;
    }

    @keyframes rainbow_anim {

        0%,
        100% {
            background-position: 0 0;
        }

        50% {
            background-position: 100% 0;
        }
    }

    @keyframes border_amim {

        0%,
        100% {
            background-position: 0 0;
        }

        50% {
            background-position: 100% 0;
        }
    }

    img {
        border: 1px solid white;
    }

    .rainbow-text {
        text-align: center;
        background: linear-gradient(to right, #6666ff, #0099ff, #00ff00, #ff3399, #6666ff);
        background-clip: text;
        color: transparent !important;
        animation: rainbow_anim 15s ease-in-out infinite;
        background-size: 400% 100%;
    }

    #main-box {
        display: inline-grid;
        grid-template-columns: 40vw 40vw;
        grid-auto-flow: row;
        grid-gap: 20px;
    }

    #main-flex {
        padding: 30px;
        border: 3px solid white;
        border-radius: 10px;
        box-shadow: 0px 0px 20px white;
        color: white;
    }

    #flex-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    body {
        font-family: heartFont;
        font-weight: 800;
        font-size: 23px;
        background-color: black;
    }
</style>