<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <title>Maskborne</title>

  <meta name="viewport" content="width=device-width, initial-scale=1" />

  <meta name="description" content="A dark atmospheric metroidvania about masks, decay, and rebirth." />


<style>

  body {

    margin: 0;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    color: #eaeaea;

    min-height: 100vh;


    /* Background image setup */

    background-image: url("bg.jpg");

    background-size: cover;          /* fills screen, no stretch */

    background-position: center;     /* centers crop */

    background-repeat: no-repeat;

  }


  /* subtle dark overlay for readability */

  body::before {

    content: "";

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    z-index: -1;

  }


  .container {

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 40px;

    max-width: 520px;

    margin: 0 auto;

  }


  img {

    max-width: 240px;

    margin-bottom: 28px;

  }


  p {

    line-height: 1.6;

    opacity: 0.95;

  }


  .links {

    margin-top: 32px;

    display: flex;

    gap: 22px;

  }


  .links a {

    color: #eaeaea;

    text-decoration: none;

    font-weight: 500;

    opacity: 0.85;

  }


  .links a:hover {

    opacity: 1;

  }

</style>

</head>

<body>

  <div class="container">

    <img src="logo.png" alt="Game Logo" />


    <p>

      A dark atmospheric metroidvania about masks, decay, and rebirth.

      Built by a two-person indie team.

    </p>


    <div class="links">

      <a href="#">Steam</a>

      <a href="#">X</a>

      <a href="#">Discord</a>

      <a href="#">YouTube</a>

    </div>

  </div>

</body>

</html>