.neon-container {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 20%;
    min-width: 0;
    height: 50px;
    margin: 0;
    flex-shrink: 1;
    background-color: rgb(55, 56, 68);
    font-family: var(--site-font);
    overflow: hidden;
}

.neon-text {
    font-size: 2rem;
    margin-left: 15%;
    color: #fff;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
}

/* make heading link look like plain neon text */
.neon-text a {
    color: inherit;
    text-decoration: none;
    display: inline-block; /* ensure margins/padding behave */
}


@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    }
    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}

@media (max-width: 480px) {
    .neon-container {
        width: 65%;
    }

.neon-text {
     margin-left: 5%;
  }
}