.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 90vh;
    padding: 50px 20px;
    overflow: hidden;
}

#matrix-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    background-color: rgba(10, 10, 10, 0.6);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

#typing-text-container {
    display: block; 
    text-align: center; 
    min-height: 180px;
}

#typing-text {
    white-space: pre-wrap;
    word-wrap: break-word;
    display: inline;
  
    border-right: 3px solid rgba(0, 255, 255, .75);
    animation: blink-caret .75s step-end infinite;
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: rgba(0, 255, 255, .75); }
}


.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}