/* 
Theme Name: Microvillage Theme
#splash-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#splash-screen img {
    max-width: 90%;
    max-height: 80%;
    border: 5px solid #fff;
}

#close-splash {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

#close-splash:hover {
    background-color: #f0f0f0;
}

Author: Amardeep Subadar
Author URI: https://re-reality.com/ 
*/

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    display: grid;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#splash-screen img {
    max-width: 90%;
    max-height: 80%;
    border: 5px solid #fff;
}

#close-splash {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

#close-splash:hover {
    background-color: #f0f0f0;
}
