#home {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  text-align: center;
}


#typewriter {
  font-size: 2em;
  max-width: 90%;
  white-space: pre-wrap;    
  word-break: break-word;    
  display: inline;
}

.cursor {
  display: inline-block;
  width: 10px;
  color: #fff;
  animation: blink 0.7s infinite;
  vertical-align: bottom;
}

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