* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
}

body {
    height: 100vh;
    background-color: #f0f0f0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    margin-bottom: 100px;
    width: 200px;
}

h2 {
    font-size: 1.8rem;
}

span {
    font-size: 9.5rem;
    font-weight: bold;
}

.jumping {
    animation: jumping 1s ease infinite;
}

@keyframes jumping {
    30% {
        transform: scale(1.2);
    }

    40%,
    60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

canvas {
    overflow-y: hidden;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
}

.container {
    text-align: center;
    position: absolute;
}