#squat-count,#move-direction {
    font-size: 2em;
    text-align: center;
    margin-top: 20px;
    color: white;
}

@keyframes squatCountAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

#squat-count {
    animation: squatCountAnimation 1s ease-in-out infinite;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#squat-count-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1;
}

#countdown {
    font-size: 3em;
    text-align: center;
    margin-top: 20px;
    color: white;
    display: block;
}
