html, body {
    height: 100%;
    margin: 0;
    background-color: #f0e5d9;;
    font-size: 40pt;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

img {
    width: 50%;
}

.c-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0.1) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0.1) 100%);
}

.entry {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: solid black 1px;
}

@media (max-width: 600px) {
    .entry {
        flex-direction: column;
        align-items: flex-start; /* Optional: aligns text to the left */
    }
}

p {    

    margin:0px;
    /* color: #F83321; */
}

.sticker {
    position: absolute;
    width: 350px; /* Adjust size as needed */
    height: 350px;
    pointer-events: none; /* So it doesn't block clicks */
    z-index: 9999; /* Ensure it's on top */
}

.slap {
    animation: slaps .2s ease-in-out;
}

  .scrolling-text {
    display: inline-block;
    /* padding-left: 100%; */
    animation: scroll-left 30s linear infinite;
    margin: 0px;
    /* width: 100%; */
}
.scrolling-text-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--c2);
    border-bottom: 1px solid var(--c2);
    display: flex;
    border-bottom: solid black 1px;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@keyframes slaps {
    0% {
        transform: scale(1) rotate(var(--angle));
    }
    50% {
        transform: scale(1.1) rotate(var(--angle));
    }
    100% {
        transform: scale(1) rotate(var(--angle));
    }
}