/* Tela de creditos */
.tela_creditos{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), #005bb5);
    background-color: #007aff;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 1s;
    z-index: 5;
}

.tela_creditos_animation{
    top: 100vh!important;
}

.game_autor, .game_score{
    background-color: rgba(255, 255, 255, 0.2);
    color:white;
    padding: 18px;
    margin: 10px auto 0px auto;
    border-radius: 12px;
    width: 200px;
    text-align: center;
    opacity: 0;
    transition: opacity .5s ease-in-out;
    display: none;
}

.visible {
    opacity: 1;
}