.hero-container {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    transition: height 0.5s ease;
}

.hero-svg {
    position: absolute;
    width: 100%;
    z-index: -1;
}

.hero-container-text {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 1rem;
    padding: 10px 30px;
}

.hero-text {
    cursor: default;
    background: linear-gradient(45deg, #0233d1 12.5%, #00f7ff 37.5%, #00ff4c 62.5%, #d9ff00 87.5%);
    background-clip: text;
    background-size: 200%;
    background-position-x: 0%;
    background-repeat: repeat;
    color: transparent;
    text-align: center;
    line-height: 1.3;
    transition: background-position 0.5s ease;
}

.hero-text:hover {
    background-position-x: 100%;
}

.hero-title {
    font-weight: 600;
}

.hero-subtitle {
    text-transform: uppercase;
    font-size: calc(1.3rem + 1dvw);
    font-weight: 600;
}