.money{
    position: absolute;
    color: #4CAF50;
    font-weight: bold;
    font-family: 'gta', sans-serif;
    -webkit-text-stroke: 0.05em black;
    letter-spacing: -0.01em;
    right: 1%;
    top: 0;
    font-size: 4em;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 0.8;
    margin: 1% 0.1%;
    pointer-events: none;
}

.added {
    color: white;
    font-size: 1em;
    opacity: 1;
    animation: show 4s ease 0s 1 normal forwards;
}

@keyframes show {
	0% {
		opacity: 0;
	}

	33.3% {
		opacity: 1;
	}

    66.6% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@font-face {
    font-family: 'gta';
    src: url('/other/pricedown_bl.ttf') format('truetype');
    /* You can include other font formats (e.g., woff, woff2) for better cross-browser compatibility */
}