* {
    box-sizing: border-box;
    margin: 0 auto;
}

html, body {
    position: absolute;
    inset: 0;

    background-color: rgb(232, 227, 227);

    
}

body {
    display: grid;
    align-items: center;
}

.title {
    display: block;
    font-size: calc(16px + 1vw);
    color: #0c0c0c;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
}

.writing {
    display: flex;
    align-items: center;
    gap: 2px;
}

.writing::after {
    content: "";
    width: 2px;
    height: 1.5ex;
    background: #808080;
    display: inline-block;
    animation: blink 800ms steps(2) infinite;
}

@keyframes blink {
    0% {
      opacity: 0;
    }
  }