<div class="title">
  <h1>
    <div>A</div>
    <div>L</div>
    <div>I</div>
    <div>E</div>
    <div>N</div>
  </h1>
</div>
@font-face {
  font-family: "HomepageBaukasten";
  src: url("https://raw.githubusercontent.com/robole/title-sequences/main/alien/homepagebaukasten-bold.ttf");
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  overflow: hidden;
  height: 100dvh;
  margin: 0;
  background-color: black;

  display: grid;
  place-items: center;
}

.title {
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 1920 / 1080;

  background: black;
}

h1 {
  color: white;
  font-family: "HomepageBaukasten";
  font-size: 5rem;

  margin: 0 10%;
  margin-block-start: 1.25rem;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.