<!DOCTYPE html>
<html lang="en">
<head>
 <!-- There is nothing here really, this is my test server, if you're peeking in here, feel free to give me a shout on hello@bremner.digital if you need anything -->
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Bremner Digital</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            background: rgb(2,0,36);
            background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(0,0,48,1) 17%, rgba(3,118,143,1) 96%);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .centered-image {
            max-width: 100%;
            max-height: 100%;
        }
    </style>
</head>
<body>
    <img src="logo.png" alt="Centered Image" class="centered-image">
</body>
</html>

