@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux&display=swap');

html, body {
    overscroll-behavior: none;
    background-color: black;
}

body {
    font-family: 'Afacad Flux', sans-serif;
    color: white;
    justify-content: center;
    text-align: center;
    display: flex;
    align-items: center;
    height: 100vh;
}

.background {
    background: black;
    background: radial-gradient(circle, #1A1A1A, black);
}

.image{
    max-width: 150px;
    max-height: 150px;
    width: 100%;
    height: auto;
}

:root {
    --op: .25;
}

.glow{
    text-shadow: 0 0 5px rgba(255, 255, 255, var(--op)), 0 0 10px rgba(255, 255, 255, var(--op)), 0 0 15px rgba(224, 224, 224, var(--op)), 0 0 20px rgba(224, 224, 224, var(--op)), 
                 0 0 25px rgba(224, 224, 224, var(--op)), 0 0 30px rgba(224, 224, 224, var(--op)), 0 0 35px rgba(224, 224, 224, var(--op)), 0 0 40px rgba(255, 0, 255, var(--op)), 
                 0 0 45px rgba(255, 0, 255, var(--op)), 0 0 50px rgba(0, 255, 255, var(--op)), 0 0 55px rgba(0, 255, 255, var(--op));
}

#countdown {
    /* Inherit the same styles as other text */
    text-shadow: inherit;
}