.hero-img{
    margin: 0px;
    padding: 0px;
    margin-left: -60%;
    margin-top: -6%;
    z-index: 500;
    height: 80vh;
}
.hero-text{
    z-index: 1;
}
.main-title{
    font-size: 4.5rem;
}

.hero {
    position: relative;
}
.blurbg {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-color: #C49EF7; 
    filter: blur(150px);
    z-index: -1;
    animation: grow-shrink 5s infinite ease-in-out;
}
@keyframes grow-shrink {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translate(-45%, -55%) scale(1.2) rotate(15deg);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4) rotate(30deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(-55%, -45%) scale(1.2) rotate(45deg);
        opacity: 0.85;
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(360deg);
        opacity: 0.8;
    }
}


.hero-text{
    padding-top: 3%;
}
#typed-text{
    color: white;
}
.typing-effect {
    border-right: 2px solid #C49EF7;
    animation: blink-caret 0.7s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #C49EF7;
    }
}

canvas {
    display: block;
}
.waves{ 
    margin-left: -80%;
    padding-right: 38%;
    margin-top: 20%;
    z-index: 1;
    width: 100%;
    height: 180px;
    /*border: 2px solid aqua*/
}