/* Splash */
.splash {
    background: none;
    background-size: cover;
    transition: all 0.5s ease;

    --splash-max-width: calc(100vw - 200px);
}
.splash-bg-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: var(--medium-dark-color);
    opacity: 0.7;
    mix-blend-mode: multiply;
}

.splash .title-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}
#title-bg-img {
    -webkit-mask-image: url(../images/website_title.png);
    -webkit-mask-repeat: no-repeat;
    mask-image: url(../images/website_title.png);
    mask-repeat: no-repeat;
    mask-position: 50% 50%;
    mask-size: min(1337px, var(--splash-max-width)) auto;
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    transition: all 0.5s ease; 
}
.splash .title-outline {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease; 
    max-width: var(--splash-max-width);
}
#title-outline-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: inherit;
}