body {
    font-family: 'Cascadia Code', sans-serif;
    padding: 0;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(241, 241, 241);

}

header {
    color: rgb(44, 44, 44);
    position: relative;
    top: -100px;
    
}
#counter{
    color: rgb(44, 44, 44);
    font-size: 18px;
    font-weight: bold;

}
#game {
    
    width: fit-content;
    height: 200px;
    border-bottom: 0px solid rgb(110, 110, 110);


}

#character {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 0, 0, 0);
    position: relative;
    top: 150px;
    

}


#block {
    width: 20px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0);
    position: relative;
    top: 130px;
    animation: block 2s infinite linear;
}

@keyframes block {
    0% {
        left: 400px
    }

    100% {
        left: -400px;
    }
}

@keyframes jump {
    0% {
        transform: scale(1, 1);
        top: 150px;
    }

    10% {
        transform: scale(1.1, 1);
        top: 150px;
    }

    30% {
        transform: scale(1.2, 0.9);
        top: 90px;
    }

    50% {
        transform: scale(1.3, 0.85);
        top: 90px;
    }

    57% {
        transform: scale(1, 1);
        top: 143px;
    }

    64% {
        transform: scale(1, 1);
        top: 143px;
    }

    100% {
        transform: scale(1, 1);
        top: 150px;
    }
}

.animate {
    animation: jump 500ms;
    animation-timing-function: cubic-bezier(0.280, 0.840, 0.420, 1);
}

.character-img {
    margin-top: -80px;
    margin-left: -70px;
    width: 200px;
}

.block-img {
    margin-left: -25px;
    margin-top: -3px;
    width: 70px;
}

.github-logo {
    cursor: pointer;
    margin-top: 5px;
    height: 25px;
    width: 25px;
    transition: 0.3s;

}

.archis {
    height: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2.6em;
    padding-bottom: 2em;
    padding-left: 1em;
    padding-right: 1em;
    border-radius: 15px;
    margin: 1em;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    position: absolute;
    bottom:0;
    z-index: 1;
}

.github-logo:hover {
    height: 30px;
    width: 30px;
}