:root {
    --yellow-color: #ffb590;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    background: #000;
    color: #fff;
    font-family: "Assistant", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    text-align: center;
}

.page-title {
    font-weight: 700;
    font-size: clamp(2.8rem, 3vw, 2.6rem);
    margin-bottom: 30px;
}

#amount_wrap {
    font-size: 2rem;
    color: var(--yellow-color);
    text-shadow: 0 0 12px #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

#text-above-amount{
    font-size: 2rem;
}

.amount-text {
    font-weight: 800;
    font-size: 3.3rem;
    white-space: nowrap;
}
#circle {
    width: 100%;
    border-radius: 50%;
    border: 4px solid var(--yellow-color);
    position: relative;
    overflow: hidden;
    max-width: 370px;
    margin-top: 40px;
}

#circle:before{
    content: '';
    display: block;
    padding-top: 100%;
}

#circle:after{
    content: '';
    background: linear-gradient(to bottom, var(--yellow-color), var(--yellow-color), #b57e62, var(--yellow-color), var(--yellow-color));
    background-size: 100% 400%;
    animation: moveGradient 2s linear infinite;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--fill-amount);
}

/* רספונסיביות כללית */
@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .page-title {
        margin-bottom: 20px;
    }
}

@keyframes moveGradient {
    to{
        background-position-y: 100%;
    }
}
