<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Momo IT</title>
    <meta charSet="utf-8"/>
    <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0"/>

    <style>
      * {
        box-sizing: border-box;
      }

      html {
        font-size: 24px;
        font-weight: 400;
        line-height: 1.4;
      }

      @media (min-width: 1000px) {
        html {
          font-size: 36px;
        }
      }

      body {
        margin: 0;
        padding: 0;
        font-family: Source Sans Pro, Open Sans, sans-serif;
        color: white;
        display: flex;
        flex-direction: column;
      }

      main {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        min-height: 100vh;
        background: radial-gradient(farthest-corner at -5% -5%, rgb(255, 0, 200) 0%, rgb(230, 0, 67) 100%);
      }

      .logo {
        font-weight: 800;
        font-style: italic;
      }

      .realness {
        display: block;
        margin-left: 1rem;
        font-style: italic;
      }

      h1 {
        font-size: 1.5rem;
        font-weight: 800;
        font-style: normal;
        line-height: 1.25;
      }

      @media (min-width: 1000px) {
        .realness {
          margin-left: 2rem;
        }
        h1 {
          font-size: 2rem;
          margin-bottom: 2rem;
        }
      }

      footer {
        margin-top: 1rem;
        font-size: 16px;
      }

      a {
        display: inline-block;
        word-wrap: break-word;
        line-break: normal;
        color: white;
        text-decoration: none;
        margin-left: 2rem;
        margin-top: 1rem;
      }

      p {
        margin: 0;
        margin-top: 0.5rem;
      }

      a:hover {
        text-decoration: underline;
      }

      .feather {
        display: inline-block;
        vertical-align: sub;
        margin-right: 0.5rem;
        width: 1rem;
        height: 1rem;
      }
    </style>
  </head>
  <body>
    <main>
      <div class="logo">
        Momo IT
      </div>
      <h1>&lt;&gt; <span class="realness">We engineer and operate.</span> &lt;/&gt;</h1>
      <p>
        We have over 30 years of combined experience creating and managing performant IT-infrastructures,
        and follow projects from planning to development into operations.
      </p>
      <p>
        We prefer using free and open source software, know our way around data privacy and compliance, and have
        access to a sizable network of professionals to fall back on for special requests.
      </p>
      <p>
        Find us in Cologne, Germany.
        <a href="mailto:mail@momo.koeln">
          <svg
            xmlns="http://www.w3.org/2000/svg"
            viewBox="0 0 24 24"
            fill="none"
            stroke="currentColor"
            stroke-width="2"
            stroke-linecap="round"
            stroke-linejoin="round"
            class="feather feather-mail"
          >
            <path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
            <polyline points="22,6 12,13 2,6"></polyline>
          </svg>mail@momo.koeln
        </a>
      </p>
      <footer>
        <h4>Imprint & Privacy</h4>

        <p>
          Responsible for contents: <br>
          <br>
          Wernery, Bädorf & Sokolowski GbR<br>
          Jhonas Wernery, Benjamin Bädorf, Hendrik Sokolowski<br>
          <br>
          <adress>
          MiOM Kreativraum e.V. c/o Momo IT<br>
          Wilhelm-Mauser-Straße 47, Halle 5<br>
          50827 Köln
          </address>
        </p>
        <p>
          This website does not track any personal data.
        </p>
      </footer>
    </main>
  </body>
</html>