*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.gameBoard{
    width: 100vw;
    height: calc(100vh - 42.4px); /* 56px = altura do footer */
    border-bottom: 15px solid rgb(18, 241, 85);
    background: linear-gradient(#5FC9F8, #C9F6FF);
    margin: 0;
    position: relative;
    overflow: hidden;
}

.pipe{
    position: absolute;
    bottom: 0;
    width: 80px;
    animation: pipeAnimation 1.5s linear infinite;
}

.mario{
    position: absolute;
    bottom: 0;
    width: 150px;
}

.jump{
    animation: jump 500ms infinite ease-out;
}

.clouds{
    position: absolute;
    width: 550px;
    animation: cloudsAnimation 20s linear infinite;
}

.footer{
    width: 100vw;
    text-align: center;
    padding: 16px 0 8px 0;
    font-size: 1rem;
    color: #FFFFFF;
    background: #2F2F2F;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
}

@keyframes pipeAnimation{
from{
    right: -80px;
}
to{
    right: 100%;
}
}

@keyframes jump{
    0%{
        bottom: 0;
    }
    40%{
        bottom: 180px;
    }   
    50%{
        bottom: 180px;
    }    
    60%{
        bottom: 180px;
    }
    100%{
        bottom: 0;
    }
}

@keyframes cloudsAnimation{
from{
    right: -550px;
}
to{
    right: 100%;}
}