@keyframes swing-right {
    0% { margin-right: 7px; }
    100% { margin-right: 20px; }
}

@keyframes swing-left {
    0% { margin-left: 7px; }
    100% { margin-left: 20px; }
}

html {
    background-color: black;
    font-family: 'JetBrains Mono', monospace;
    cursor: url('cursor.png'), auto;
    height: 100%;
    cursor: none;
}

h1 {
    font: 900 2rem 'Poppins', sans-serif;
    color: rgb(255, 0, 255);
    text-align: center;
    text-transform: uppercase;
    margin-top: 25%;
    transform: translateY(-50%);
}

h1::before, h1::after {
    margin-right: 10px;
    font-size: 4rem;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.5s ease;
}

h1::before {
    content: "『";
    animation: swing-right 5s infinite ease-in-out alternate;
}

h1::after {
    content: "』";
    animation: swing-left 5s infinite ease-in-out alternate;
}

.bobble span {
    display: inline-block;
    transition: transform 0.1s ease-out;
    font-size: 2rem;
    white-space: pre;
}

.glow-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 1));
    z-index: 9999;
  }

.glow-cursor g {
    stroke: rgba(255, 0, 255, 1);
    stroke-width: 1;
}