@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.box {
    margin: 10px auto;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    width: 50%;
    color: white;
    max-width: 350px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    background-color: rgba(204, 111, 34,0.9);
}

.arrow-container {
    position: relative;
    width: 100%;
    height: 30px;
    overflow: hidden;
}

.arrow {
    position: absolute;
    left: calc(50% - 10px); /* Updated this line */
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #000;
    animation: fallAndPulse 1.5s infinite linear;
}

.arrow.delay {
    animation-delay: 0.75s;
}

.transaction {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #000;
    text-align: center;
    margin: 10px 0;
}

@keyframes fallAndPulse {
    0% { transform: translateY(-20px) scale(1); opacity: 0; }
    50% { transform: translateY(15px) scale(1.3); opacity: 1; }
    100% { transform: translateY(50px) scale(1); opacity: 0; }
}
