@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
body {
    background-color: #262626;
    color: white;
    font-family: 'Roboto', sans-serif;
}

h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    -webkit-animation: neon 1s ease-in-out infinite alternate;
    -moz-animation: neon 1s ease-in-out infinite alternate;
    animation: neon 1s ease-in-out infinite alternate;
}

h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    -webkit-animation: neon 1s ease-in-out infinite alternate;
    -moz-animation: neon 1s ease-in-out infinite alternate;
    animation: neon 1s ease-in-out infinite alternate;
}

p {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

div {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    padding: 20px;
}

@-webkit-keyframes neon {
    0% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e6cf00, 0 0 40px #e69d00, 0 0 50px #e66f00, 0 0 60px #e60f00, 0 0 70px #e60000;
    }
    100% {
        text-shadow: 0 0 20px #fff, 0 0 30px #d1ff2c, 0 0 40px #ffe23e, 0 0 50px #f8aa18, 0 0 60px #ff854d, 0 0 70px #ff4d4d, 0 0 80px #ff4d4d;
    }
}