@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap");

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #0e0220;
  color: white;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2rem, 10vw, 6rem);
  font-weight: bold;
}

.text-container {
  position: relative;
  text-align: center;
}

.cursor {
  display: inline-block;
  width: 1px;
  height: 1em;
  background-color: white;
  vertical-align: bottom;
}

.cursor.grow {
  animation: growHeight 2s forwards;
}

.cursor.blink {
  animation: blink 0.2s;
}

.blinking-dot {
  color: red;
  animation: blink 2s infinite;
  text-decoration: none;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes growHeight {
  from { height: 0em; }
  to { height: 1em; }
}
