body {
    background-color: tan;
}

.le_dancing_taur {
    position: absolute;
    top: 30px;
    left: 40%;
    width: 250px;
    height: 200px;
    animation-name: taurotation;
    animation-duration: 759ms;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-iteration-count: infinite;
    aspect-ratio: unset;
    object-fit: fill;
    transform: skewX(50deg);
    transform-origin: 50% 100%;
    animation-delay: 1s;
}

@keyframes taurotation {

    from,
    0%,
    50% {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }
}

h1 {
    font-size: small;
}

.turs {
    transform: rotateZ('angle');
    animation-name: tursrotation;
    animation-duration: 660ms;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-delay: 800s;
    font-size: 99px;
    height: min-content;
    padding: 0%;
    margin: 0%;
    line-height: 0%;
}

@keyframes tursrotation {

    from,
    0% {
        transform: rotateX(230deg) rotateY(20deg);
    }

    to {
        transform: rotateX(-10deg) rotateY(0deg);
    }
}

.taurdivider {
    height: 5px;
    width: 100%;
    background-color: blueviolet;
}

.taurodo {
    position: absolute;
    top: 5%;
    left: 20%;
    right: 10%;
    text-align: end;
    font-size: larger;
    font-weight: bold;
    font-family: 'Times New Roman', Times, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.taursponsor {
    font-size: 100px;
    font-size: 15vmax;
    text-align: justify;
}


taurs {
    width: auto;
    display: grid;
    margin-left: 50px;
    margin-right: 50px;
    padding: 10px;
    grid-template-columns: auto auto auto auto auto auto;

    @media (min-width: 3000px) {
        width: 3000px;
    }

    @media (max-width: 2500px) {
        grid-template-columns: auto auto auto auto auto;
    }

    @media (max-width: 2000px) {
        grid-template-columns: auto auto auto auto;
    }

    @media (max-width: 1500px) {
        grid-template-columns: auto auto auto;
    }

    @media (max-width: 1000px) {
        grid-template-columns: auto auto;
    }

    @media (max-width: 500px) {
        grid-template-columns: auto;
    }
}

taur {
    padding: 5px;
    display: flex;
    align-items: center;
    vertical-align: bottom;
}

taur>img {
    width: 100%;
}

taur.bouncy {
    animation-name: bouncytaur;
    animation-duration: 450ms;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-origin: 50% 100%;
    animation-timing-function: ease-in-out;
}


@keyframes bouncytaur {
    from {
        transform: skewX(-5deg) scaleY(95%);
    }

    to {
        transform: skewX(5deg) scaleY(95%);
    }

    50% {
        transform-origin: 50% 100%;
        transform: skewX(0deg) scaleY(100%);
    }
}

taur.squishy {
    animation-name: squishytaur;
    animation-duration: 300ms;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-origin: 50% 100%;
    animation-timing-function: ease-in-out;
}


@keyframes squishytaur {
    from {
        transform: scaleY(90%);
    }

    to {
        transform: scaleY(100%);
    }
}

taur.verysquishy {
    animation-name: verysquishytaur;
    animation-duration: 800ms;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transform-origin: 50% 100%;
    animation-timing-function: ease-in-out;
}


@keyframes verysquishytaur {
    from, 20% {
        transform: scaleY(60%);
    }

    95%, to {
        transform: scaleY(100%);
    }
}

taur.spinny {
    animation-name: taur;
    animation-duration: 2s;
    animation-play-state: running;
    animation-iteration-count: infinite;
    animation-direction: normal;
    transform-origin: 50% 50%;
    animation-timing-function: linear;
}

@keyframes spinnytaur {
    from {
        transform: rotateZ(0deg);
    }

    to {
        transform: rotateZ(360deg);
    }
}

taur.wigglywobbly {
    animation-name: wigglywobblytaur;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@keyframes wigglywobblytaur {
    from {
        transform: skewY(-10deg);
    }
    
    40%, 60% {
        transform: skewY(0deg);
    }

    to {
        transform: skewY(10deg);
    }
}

.fliph {
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}