 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
        }

        #breaking-news-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 40px;
            overflow: hidden;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        #breaking-news-colour {
            height: 40px;
            width: 100%;
            background-color: #3399FF;
            position: relative;
        }

        .breaking-news-title {
            background-color: #FFEA00;
            display: flex;
            align-items: center;
            height: 40px;  
            width: 140px;
            font-family: Arial, sans-serif;
            font-size: 14px;
            font-weight: bold;
            position: absolute; 
            top: 0;
            left: 0;
            padding-left: 15px;
            z-index: 3;
        }

        .breaking-news-title:before {
            content: "";
            position: absolute;
            display: block;
            width: 0px;
            height: 0px;
            top: 0;
            left: -15px;
            border-left: 15px solid transparent;
            border-right: 0px solid transparent;
            border-bottom: 40px solid #FFEA00;
        }

        .breaking-news-title:after {
            content: "";
            position: absolute;
            display: block;
            width: 0px;
            height: 0px;
            right: -15px;
            top: 0;
            border-right: 15px solid transparent;
            border-left: 0px solid transparent;
            border-top: 40px solid #FFEA00;
        }

        .breaking-news-headline {
            display: flex;
            align-items: center;
            position: absolute;
            top: 0;
            left: 150px;
            height: 40px;
            color: white;
            font-family: Arial, sans-serif;
            font-size: 16px;
            white-space: nowrap;
            z-index: 2;
        }

        /* Animaciones */
        .animated {
            animation-duration: 0.2s;
            animation-fill-mode: both;
            animation-iteration-count: 1;
        }

        .delay-animated {
            animation-duration: 0.4s;
            animation-fill-mode: both;
            animation-iteration-count: 1;
            animation-delay: 0.3s; 
        }

        .delay-animated2 {
            animation-duration: 0.4s;
            animation-fill-mode: both;
            animation-iteration-count: 1;
            animation-delay: 0.5s; 
        }

        .fadein {
            animation-name: fadein;
        }

        @keyframes fadein {
            from {
                left: 100%;
            }
            to {
                left: 150px;
            } 
        }

        .slidein {
            animation-name: slidein;
        }

        @keyframes slidein {
            from {
                left: -200px;
            }
            to {
                left: 0;
            } 
        }

        .slideup {
            animation-name: slideup;
        }

        @keyframes slideup {
            from {
                top: -40px;
            }
            to {
                top: 0;
            } 
        }

        .marquee {
            animation: marquee 20s linear infinite;
            animation-delay: 1s;
        }

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

        /* Contenido de ejemplo */
        .content {
            margin-top: 60px;
            padding: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        h1 {
            color: #333;
            margin-bottom: 20px;
        }

        p {
            line-height: 1.6;
            margin-bottom: 15px;
            color: #555;
        }

        .news-item {
            background-color: white;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 5px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .news-item h2 {
            color: #3399FF;
            margin-bottom: 10px;
        }