@keyframes moveSide {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(-5px); }
    50%  { transform: translateX(5px); }
    75%  { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.move-animation {
    display: inline-block;
    animation: moveSide 1.5s ease-in-out infinite;
}
#animated-text {
    display: inline-block;
    white-space: nowrap;
    transition: transform 0.3s ease;
}
.header {
    background: white;
    color: rgb(255, 51, 0);
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 5px;
    padding-top: 5px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    position:sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}