@import url('https://fonts.googleapis.com/css2?family=Teko:wght@700&display=swap');

@font-face {
    font-family: 'Bebas Neue';
    src: url('https://superplaycounts.github.io/fonts/Bebas-Neue.ttf');
}

body {
    margin: 0;
    overflow: hidden;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    font-family: 'Teko', sans-serif;
    font-size: 7rem;
    color: #ffffff;
    letter-spacing: 5px;
    font-weight: 700;
    position: relative;
    text-shadow: -2px -2px 0 #ff004c, 2px 2px 0 #00fff8;
    animation: glitch 1.5s infinite linear;
    margin-bottom: 20px;
}

@keyframes glitch {
    0%, 100% {
        text-shadow: -2px -2px 0 #ff004c, 2px 2px 0 #00fff8;
    }
    25% {
        text-shadow: 2px 2px 0 #ff004c, -2px -2px 0 #00fff8;
    }
    50% {
        text-shadow: 2px -2px 0 #ff004c, -2px 2px 0 #00fff8;
    }
    75% {
        text-shadow: -2px 2px 0 #ff004c, 2px -2px 0 #00fff8;
    }
}

.odometer {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}