@import url(https://fonts.googleapis.com/css?family=Amatic+SC:400,700);
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000;
    font-family: 'Amatic SC', cursive;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100%; */
}

.neon-text1 {
    font-size: 2em;
    color: #ff0303;
    text-shadow: 
        0 0 10px #ff0000, 
        0 0 20px #bd2626, 
        0 0 30px #b96464, 
        0 0 40px #0ff, 
        0 0 70px #0ff, 
        0 0 80px #0ff, 
        0 0 100px #0ff, 
        0 0 150px rgb(20, 73, 73);
    transition: filter 0.5s ease;
    margin-left: 10px;
    cursor: none;
}
.neon-text {
    font-size: 5em;
    color: #fff;
    text-shadow: 
        0 0 10px #fff, 
        0 0 20px #fff, 
        0 0 30px #fff, 
        0 0 40px #0ff, 
        0 0 70px #0ff, 
        0 0 80px rgb(26, 165, 165), 
        0 0 100px rgb(18, 104, 104), 
        0 0 150px rgb(2, 63, 63);
    transition: filter 0.5s ease;
    margin-right: 10px;
    cursor: none;
}
.neon-game{
    font-size: 3em;
    color: #000000;
    text-shadow: 
        0 0 10px #fff, 
        0 0 20px #fff, 
        0 0 30px #d41212, 
        0 0 40px rgb(255, 81, 0);
        /* 0 0 70px #0ff, 
        0 0 80px #0ff, 
        0 0 100px #0ff, 
        0 0 150px #0ff; */
    transition: filter 0.5s ease;
}
.neon-game:hover{
    color: #ffffff;
    cursor: pointer;
}
.cont_game{
    margin: 0 50px;
}
.cont_game a{
    text-decoration: none;
}
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.star {
    position: absolute;
    border-radius: 50%;
    background-color: white;
    opacity: 0.8;
    transition: transform 0.05s ease-out;
}



footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    /* padding: 10px; */
}

@media (max-width: 700px) {
    .container {
        flex-direction: column;
    }
    .neon-text{
        margin-right: 0px;
    }
    .neon-text1{
        margin-left: 0px;
    }
}

@media (max-width: 450px){
    .neon-text{
        font-size: 3em;
    }
}