html, body {
    height: 100%;
    text-align: center;
}

body { 
    background-image: url('/images/background-ss.png');
    background-position: center;
    background-repeat:  no-repeat;
    background-attachment: fixed;
    background-size:  cover;
    margin:0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;  
}


img.logo {
    margin: auto;
    height: auto;
    width: 42%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

p.coming-soon {
    font-family: 'Poppins';
    font-size: 1.6rem;
    color: rgba(255,255,255,0.6);
    position: absolute;
    top: 80%; /* Position the text dynamically */
    transform: translateY(-50%);
    text-align: center;
    
}


  