    @font-face {
    font-family: 'DOSSaemmul';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_eight@1.0/DOSSaemmul.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    }

    .shadow{
    box-shadow: 0px 0px 20px gray;
    }

    .marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
    }

    .marquee-content {
    white-space: nowrap;
    animation: marquee 10s linear infinite;
    }

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