body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 225, 223);
   
}


.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 200%; 
    height: 100%;
    background-image: url(''); 
    background-size: cover;
    background-repeat: no-repeat;
    /* animation: moveBackground 35s linear infinite; */
    z-index: -1;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: image;
    z-index: 0;
}

.ph-nmbr {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    margin-bottom: 30px;
    border: 2PX;
    background-color: rgb(255, 219, 16);
}

.ph-nmbr h2 a{
    color: #000;
    text-decoration: none;
}

.para {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .ph-nmbr {
        font-size: 2rem;
        padding: 8px 20px;
    }

    .para {
        font-size: 1.1rem;
        padding: 10px 15px;
    }

    .img img {
        width: 180%;
    }
}

@media (max-width: 768px) {
    .ph-nmbr {
        font-size: 1.8rem;
    }

    .para {
        font-size: 1rem;
    }

    .img img {
        width: 160%;
    }
}

@media (max-width: 480px) {
    .ph-nmbr {
        font-size: 1.5rem;
        padding: 6px 15px;
    }

    .para {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .img img {
        width: 140%;
    }
}