body {
    background-color: rgb(86, 224, 197);
    height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;
    transition: background-color 1s ease;
}

.marioKart {
    position: absolute;
    width: 200px;
    height: auto;
    z-index: 10;
    transition: left 3s linear; 
}

.confetti {
    position: absolute;
    width: 200px;
    height: auto;
    z-index: 11;
    animation: fall 3s ease-in forwards;
}

.triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transition: transform 3s linear;
}

.Mario-count{
    position: absolute;
    right: 6%;
    border: solid orange 2px;

}