body {
    font-family: Arial;
    text-align: center;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}
.marquee p {
    animation: moveText 10s linear infinite;
}
@keyframes moveText {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

.box {
    width: 100px;
    height: 100px;
    background: red;
    margin: 20px auto;
    animation: rotateBox 3s linear infinite;
}
@keyframes rotateBox {
    to { transform: rotate(360deg); }
}

.fade img {
    width: 150px;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

.fade img:nth-child(2) {
    animation-delay: 0.5s;
}
.fade img:nth-child(3) {
    animation-delay: 1s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cta {
    padding: 15px 30px;
    font-size: 20px;
    color: white;
    background: red;
    border: none;
    cursor: pointer;
    animation: blink 1s infinite alternate;
}
@keyframes blink {
    to {
        background: orange;
        transform: scale(1.05);
    }
}

.slider {
    width: 300px;
    overflow: hidden;
    margin: auto;
}
.slides {
    display: flex;
    animation: slide 15s infinite;
}
.slides img {
    width: 300px;
    flex-shrink: 0;
}
@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-300px); }
    66% { transform: translateX(-600px); }
    100% { transform: translateX(0); }
}
