body {
    overflow-x: hidden;
}
#canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.hero {
    height: 100vh;
    min-height: 30em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    background: hsla(
            0,
            0%,
            41%,
            0.25
    );
    backdrop-filter: blur(70px);
    -webkit-backdrop-filter: blur(70px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero div {
    text-align: center;
    z-index: 2;
}