<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<title>Peptide Cowboy</title>

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


<style>

  body {

    margin: 0;

    background: #050505;

    color: white;

    font-family: Arial, sans-serif;

    text-align: center;

  }


  .container {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    height: 100vh;

  }


  .logo {

    width: min(750px, 90%);

    margin-bottom: 100px;

  }


  .coming {

    font-size: clamp(40px, 8vw, 90px);

    font-weight: 900;

    letter-spacing: 10px;

    margin-bottom: 160px;

  }


  .contact {

    font-size: 18px;

    opacity: 0.85;

  }


  .contact a {

    color: white;

    text-decoration: none;

    margin: 0 10px;

  }

</style>

</head>


<body>


<div class="container">


  <img src="logo.png" class="logo">


  <div class="coming">COMING SOON</div>


  <div class="contact">

    <a href="mailto:chris@peptidecowboy.com">Email: chris@peptidecowboy.com</a> |

    <a href="tel:18178850629">Call/Text: 817-885-0629</a>

  </div>


</div>


</body>

</html>