html, body {
margin: 0;
padding: 0;

height: 100%;
width: 100%;
    
}
#main_desktop, #main_other_browser {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
background-image: url('Bg_Img.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#main_safari {
    position: absolute;
    background-color: #ffffff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.logo {
position: absolute;
top: 20px;
left: 20px;
}

.qr-code {
    width: 50%;
        float: right; 
        
position: absolute;
right: 50px;
top: 50%;
transform: translateY(-50%)translateX(15%);
}

/* Additional styling can be added as needed */

.main-text-desktop {
    width: 50%;
    float: left;
font-family: 'ManGlobal-Regular_Unity',
        Arial,
        Helvetica;
    position: absolute;
    color: #ffffff;
    font-size: 30px;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.main-text-other-browser {
    height: 50%;
    /* float: top; */
/* width: 100%; */
font-family: 'ManGlobal-Regular_Unity',
        Arial,
        Helvetica;
    position: absolute;
    color: #ffffff;
    font-size: 25px;
    /* left: 25px; */
    right: 25px;
    top: 50%;
    transform: translateY(-50%)translateX(10%);
}


#copy-URL {
    height: 50%;
    /* float: right; */
width: 100%;
    /* position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%)translateX(10%); */

    position: absolute;
        /* color: #ffffff; */
        font-size: 25px;
        /* left: 25px; */
        /* right: 25px; */
        top: 50%;
        transform: translateY(10%)translateX(30%);
}

#mainImgBkp {
    /* height: 100%; */
    /* float: right; */
    width: 100%;
    /* position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%)translateX(10%); */

    position: absolute;
    /* color: #ffffff; */
    /* font-size: 25px; */
    /* left: 25px; */
    /* right: 25px; */
    top: 20%;
    bottom: 20%;
    /* transform: translateY(-10%)translateX(100%); */
}

#mainImg {
    height: 500px;
    width: 500px;
}

.center-image{

    max-width: 100%;
    max-height: 100%;
}

@media all and (orientation:portrait) {
    /* Style adjustments for portrait mode goes here */
    .center-container {
    
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
    
        }
}

@media all and (orientation:landscape) {
    /* Style adjustments for landscape mode goes here */
    .center-container {
    
            display: flex;
            justify-content: center;
            height: 100vh;
    
        }
}



#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}