@import url('https://fonts.googleapis.com/css2?family=Intel+One+Mono:ital,wght@0,300..700;1,300..700&display=swap');

* {
    margin: 0;
}

body {
    font-family: 'Intel One Mono', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    background-color: #000000;
}

#bem-vindo {
    color: #39FF14;
    font-size: 20px;
    margin: 30px;
    text-align: center;
}

@keyframes neonFlicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

#titulo {
    font-size: 80px;
    background: -webkit-linear-gradient(90deg, rgba(47, 72, 88, 1) 0%, rgba(57, 255, 20, 1) 100%);
    text-align: center;
    margin-top: 30px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    justify-content: center;
    animation: neonFlicker 2s infinite;

}

#tit-jogos {
    color: rgba(57, 255, 20, 1);
    display: flex;
    justify-content: center;
    font-size: 90px;
    margin-top: 30px;
}

#tit-jogos::after,
#titulo::after {
    content: '|';
    margin-left: 5px;
    opacity: 1;
    animation: pisca .9s infinite;
    color: #39FF14 !important;
    font-weight: bold;
}

@keyframes pisca {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

}

#entrar {
    display: flex;
    justify-content: center;
}

#painel-user,
#painel-novo {
    position: fixed;
    top: 20%;
    left: 50%;
    color: #000000;
    transform: translateX(-50%);
    background-color: #ccc;
    border: 2px solid #ccc;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: none;
    transition: opacity 0.3s ease-in-out, transform 0.3s;


}

#ping {
    background-color: #39FF14;
    width: 30%;
    text-align: center;
}

.fechar {
    background-color: red;
    color: white;
    margin-top: -80%;
    margin-right: 0;
    margin-left: 99%;
    border-color: red;
}

button {
    font-family: 'Intel One Mono', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

#user-btn {
    padding: 10px;
    background-color: rgba(47, 72, 88, 1);
    border-color: rgba(47, 72, 88, 1);
    border-radius: 15px;
    font-size: 20px;
    margin: 10px;
}

#novo-btn {
    padding: 10px;
    background-color: #39FF14;
    border-color: #39FF14;
    border-radius: 15px;
    font-size: 20px;
    margin: 10px;
}

.jogos {
    background-color: #000000;
    margin: 30px 30px 10px 4%;
    padding: 10px;
    border-radius: 20px;
    width: 16%;
    display: inline-block;
    min-height: 70px;
    vertical-align: top;
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.5);
    color: #39FF14;
    border-color: #39FF14;
    justify-content: center;
    text-align: center;
}

.jogos:hover{
    background-color: #39FF14;
    transition: 0.4s;
    color: #000000;
}

#opcoes-jogos {
    margin-top: 10%;
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    color: #000000;            
    background-color: inherit; 
    font-weight: bold;        
  }
  