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);
}

.para {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto;
}

/* @keyframes moveBackground {
    0% {
        transform: translateX(0); 
    }
    100% {
        transform: translateX(-50%);
    }
} */