/* Horizontal Auto-Scrolling */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 100s linear infinite;
    border: 1px solid #000;
    background-color: rgb(198, 236, 198);
    padding: 10px;
    width: 100%;
}

.marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 100s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Vertical Auto-Scrolling */
.vertical-marquee {
    height: 1000px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.marquee-content {
    position: absolute;
    top: 100%;
    animation: vertical-marquee 10s linear infinite;
}

.vertical-marquee p {
    margin: 0;
    height: 1000px; /* Same as the container height */
}

@keyframes vertical-marquee {
    0% {
        top: 100%;
    }
    100% {
        top: -5000%; /* Adjust based on the number of lines */
    }
}

body {
    overflow: hidden;
    background-color: rgb(0, 0, 0);
}
p {
    color: rgb(26, 156, 26);
}