html,
body {
    margin: 0;
}

/* The tap overlay must sit above the scene and be clickable */
.hud {
    position: fixed;
    height: 100px;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    /* z-index > scene */
    pointer-events: auto;
}

#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2A0F33;
    z-index: 999;
    pointer-events: none;
    display: grid;
    place-content: center;
    opacity: 1;
    transition: 0.3s ease-out;
}

#splash.hidden {
    opacity: 0;
}

#splash .splash-card {
    width: 100%;
    height: 80%;
    max-width: 300px;
    max-height: 300px;
}

#splash .splash-card img {
    width: 100%;
    max-height: 70px;
}

#splash .splash-card .splash-sub {
    color: #BD934F;
    font-size: 16px;
    text-align: center;
    margin-top: 50px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 5px;
    z-index: 99;
}

#logo-img {
    margin-left: 5px;
    margin-top: 5px;
    width: 120px;
}

#logo-img img {
    width: 100%;
    height: auto;
}