        #playerOne {
            cursor: pointer;
        }

        .field {
            background-color: aliceblue;
            text-align: center;
            display: flex;
            width: 100%;
            justify-content: space-evenly;
            align-items: center;
        }

        .field .jugador {
            display: inline-block;
        }

        .field .vs {
            color: #BFD1E0;
        }


        @keyframes runningOne {
            0% {
                transform: translateY(-5px);
            }
            50% {
                transform: translateY(0px);
            }
            100% {
                transform: translateY(-5px);
            }
        }

        @keyframes runningTwo {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
            100% {
                transform: translateY(0);
            }
        }

        @keyframes runningCabza {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(2px);
            }
            100% {
                transform: translateY(0);
            }
        }

        @keyframes ball {
            0% {
                transform: translateY(0px) rotate(-5deg);
            }
            50% {
                transform: translateY(-2px) rotate(5deg);
            }
            100% {
                transform: translateY(0px) rotate(-4deg);
            }
        }

        .jugador {
            position: relative;
        }

        .field .goles * {
            font-size: 28px !important;
            color: black;
        }

        .svg_player {
            max-height: 100px;
            margin: 20px;
            width: auto;
        }

        .isrunning .svg_player #botinizq {
            animation: runningOne 0.5s ease infinite;
        }

        .isrunning .svg_player #botinder {
            animation: runningTwo 0.5s ease infinite;
        }

        .isrunning .svg_player #cabeza {
            animation: runningCabza 0.5s ease infinite;
        }

        .isrunning .svg_player #pelo {
            animation: runningCabza 0.5s ease infinite;
        }

        .isrunning .svg_player #camiseta2 {
            animation: runningCabza 0.5s ease infinite;
        }

        .isrunning .svg_player #camiseta3 {
            animation: runningCabza 0.5s ease infinite;
        }


        .svg_ball {
            max-height: 40px;
            max-width: 40px;
            position: absolute;
            bottom: 5px;
            left: 45%;
        }

        .isrunning .svg_ball {
            animation: ball 0.5s linear infinite;
        }