/*
Theme Name: Splash Multisite
Description: Plays a face and audio, then redirects to parent site.
Author: Your Name
Version: 1.0
*/

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

#splash-face {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide header and footer */
#header, #footer {
    display: none !important;
}

/* Hide admin bar for logged-in users */
#wpadminbar {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
}

/* Remove extra top margin WordPress adds for admin bar */
html {
    margin-top: 0 !important;
}