@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700&family=Josefin+Slab:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400&family=Noto+Sans:wght@400;700&family=Roboto:wght@300;400;500&family=Ubuntu:wght@400;500;700&display=swap');

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

.container-game {
    width: 100%;
    height: 500px;
    border-bottom: 15px solid rgb(32, 199, 27);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(#87ceeb, #e0f6ff);
}

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

@keyframes pipe-animation {
    from {
        right: -80px;
    }

    to {
        right: 100%;
    }
}

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

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

@keyframes jump {
    0% {
        bottom: 0;
    }

    40% {
        bottom: 180px;
    }

    50% {
        bottom: 180px;
    }

    60% {
        bottom: 180px;
    }

    100% {
        bottom: 0;
    }
}

.clouds {
    width: 550px;
    position: absolute;
    animation: clouds-animation 5s infinite linear;
}

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

.menu {
    width: 100vw;
    height: 400px;
    background-color: rgb(26, 26, 26);
    font-family: "Roboto",sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu > h1 {
    font-size: 36px;
    color: #2600ff;
    padding-bottom: 3px;
}

.menu > p {
    color: rgb(255, 0, 0);
    letter-spacing: 1px;
}