.spinning-div {
    position: relative;
    width: 600px;
    height: 550px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinning-div::before {
    content: "";
    position: absolute;
    top: -35%;
    left: -35%;
    width: 170%;
    height: 170%;
    background: url('../images/scorecard_bg.png') center/cover no-repeat;
    animation: reverseSpin 27s linear infinite;
    z-index: -1;
}

@keyframes reverseSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

#scorecardText {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 165px;
    width: 340px;
}

#scorecardText p,
.scorecardTimes p {
    margin: 0px;
    margin-bottom: 6px;
    font-size: 135%;
}

.scorecardTimes {
    position: absolute;
    left: 393px;
    top: 189px;
}

#scorecardLine {
    height: 3.6px;
    position: absolute;
    top: 380px;
    left: 50%;
    transform: translate(-50%);
}

#scorecardFinal {
    position: absolute;
    top: 390px;
    left: 50%;
    transform: translate(-50%);
    font-size: 240%
}