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

body {
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  gap: 10vh;
}

/* First line (about 40% of screen height) */
.line1 {
  font-size: 10vh;
  font-weight: bold;
  line-height: 0.9;
}

/* Second line (1.5x bigger, about 60% of screen height) */
.line2 {
  font-size: 12.5vh; /* 25vh × 1.5 */
  font-weight: bold;
  line-height: 0.9;
}
