/* hero */

#hero {
    padding: 0;
    margin: 0;
    position: relative;
    height: 500px;
    background-color: rgb(13, 16, 20);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Hinter den Text legen */
}

.hero-text {
    position: relative;
    color: white;
    text-align: center;
    z-index: 2;
}

/* text */
.hero-title {
    font-size: 3rem;
    margin: 0;
}
.hero-subtitle {
    color: var(--text-color-secondary);
    font-weight: lighter;
}


