.hide {
    display: none;
}

#desktopIframe {
    text-align: center;
}

/* #mobileWarning img.logo {
    width: 50%;
    margin-top: 20px;
} */

@media (min-width: 768px) {
    #desktopIframe {
        display: block;
        width: 100%;
        height: 100vh;
    }
}


#mobileWarning {
    color: white;
    background-color: black;
    font-size: 28px;
    font-family: 'Avira', Arial, sans-serif;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    padding-top: 40%;
}


#mobileWarning button {
    background-color: #4CAF50;
    border: none;
    color: rgb(0, 0, 0); /* Corrected comment position */
    padding: 20px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 25px;
    transition: background 0.3s, transform 0.3s;
}

#mobileWarning button:hover {
    background-color: #1a3492; /* Updated comment to match color */
    transform: scale(1.05);
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
