﻿@font-face {
    font-family: 'tajawal-regular';
    src: url('../fonts/tajawal-regular.ttf') format('truetype');
}

#newsTicker {
    position: fixed;
    width: 100%;
    background-color: #fff;
    color: #bd0000;
    box-shadow: 0px 0px 8px 2px #000000;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 998;
    font-family: 'tajawal-regular', Arial, sans-serif;
}

.story {
    margin-right: 20px;
}

#newsTicker p {
    margin: 0;
    display: inline-block;
    font-size: 25px;
    transform: translateX(100%);
    animation: tickerTape 60s linear infinite;
}

@keyframes tickerTape {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.content {
    position: absolute;
    min-width: 100vw;
    height: calc(100vh - 45px);
    margin-top: 45px;
    background: url("https://picsum.photos/g/1920/1080/?random");
}

@media (max-width: 768px) {
    #newsTicker p {
        font-size: 18px;
        animation-duration: 40s;
    }

    .content {
        margin-top: 60px;
    }
}
