<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Craft A Craft</title>
        <style>
        .container {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .roboto-thin {
          font-family: "Roboto", sans-serif;
          font-weight: 100;
          font-style: normal;
          font-size: 50px;
        }
    <style>
      <link rel="preconnect" href="https://fonts.googleapis.com">
      <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
      <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap" rel="stylesheet">
    </style>
  </head>
  <body>
<div class="container">
  <div class="roboto-thin">
    <p>Craft A Craft</p>
  </div>
  </body>
</html>
