.nav__top-wrapper{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    color: #ff0000;
    overflow-y: hidden;
    overflow-x: hidden;
}

.main__nav-top{
    width: 50rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-end;
    justify-content: space-evenly;
    align-items: flex-end;
    padding: 1rem;
}

.nav__top-timer, .nav__top-score, .nav__top-lives{
    padding: 0.5rem;
}

.top__timer, .top__score, .top__lives{
    text-align: -webkit-center;
    text-align: center;
}

@media screen and (max-width:481px) {
    .main__nav-top {
        width: 50rem;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: stretch;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }
}

@media screen and (max-width:375px) {
    .nav__top-timer, .nav__top-score, .nav__top-lives{
        padding: 0.3rem;
    }    
}

