<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <title>Child of God Faithwear</title>


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


  <meta name="description" content="Child of God Faithwear. Launching soon.">


  <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap" rel="stylesheet">


  <style>

    body {

      margin: 0;

      background: #ffffff;

      color: #000000;

      font-family: "Playfair Display", serif;

      display: flex;

      align-items: center;

      justify-content: center;

      height: 100vh;

      text-align: center;

    }


    .container {

      max-width: 420px;

      width: 100%;

      padding: 24px;

    }


    img {

      max-width: 220px;

      margin-bottom: 40px;

    }


    h1 {

      font-size: 28px;

      font-weight: 500;

      margin-bottom: 32px;

    }


    form {

      display: flex;

      flex-direction: column;

      gap: 14px;

    }


    input {

      padding: 14px;

      font-size: 14px;

      border: 1px solid #000000;

      font-family: inherit;

    }


    button {

      padding: 14px;

      font-size: 14px;

      background: #000000;

      color: #ffffff;

      border: none;

      cursor: pointer;

      font-family: inherit;

    }


    .privacy {

      font-size: 11px;

      opacity: 0.6;

      margin-top: 14px;

    }

  </style>

</head>


<body>

  <div class="container">


    <img src="logo.png" alt="Child of God">


    <h1>Launching soon.</h1>


    <form>

      <input type="email" placeholder="Email address" required>

      <button type="submit">Notify me</button>

    </form>


    <div class="privacy">

      No spam. Unsubscribe anytime.

    </div>


  </div>

</body>

</html>