    * {
        margin: 0;
        padding: 0;
        font-family: 'Courier New', Courier, monospace;
    }
    /* body {
        background: #0a2a43;
        min-height: 1500px;
    } */
    
    section #newyear {
        position: fixed;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    section #newyear::before {
        content: '';
        position: absolute;
        bottom: 0;
        width: 100vw;
        height: 100%;
        background: linear-gradient(to top, #0a2a43, transparent);
        z-index: 1000;
    }
    
    section #newyear::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        background: linear-gradient(to top, #0a2a43);
        z-index: 1000;
    }
    
    section #newyear img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
    }
    
    #newyear #text {
        position: relative;
        color: #fff;
        font-size: 10em;
        z-index: 1;
    }
    
    #newyear #road {
        z-index: 2;
    }