html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    border: 0;
}

#gymly-splash {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 20;
    background: #1e2a78;
    align-items: flex-end;
    justify-content: flex-start;
}

html.gymly-splash #gymly-splash {
    display: flex;
}

#gymly-splash-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#gymly-splash-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 16, 40, 0.72), rgba(10, 16, 40, 0.12) 45%, rgba(10, 16, 40, 0.2));
}

#gymly-splash-name {
    position: relative;
    z-index: 1;
    margin: 0 0 48px 40px;
    color: #fff;
    font: 600 28px/1.2 system-ui, sans-serif;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

#gymly-splash.is-leaving {
    opacity: 0;
    transition: opacity 280ms ease;
}