#popupWelcomeSplashContainer
{
	width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    inset: 0;
    z-index: 100;
    background-color: #ffffff;
}

#holdingPageVideo
 {
	top: 0; 
	left: 0; 
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	z-index: -1;
}

#videoDots
{
	width: 100%;
	height: 100%;
	position: absolute;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABZJREFUeNpi2r9//38gYGAEESAAEGAAasgJOgzOKCoAAAAASUVORK5CYII=);
	z-index: -1;
}

#contentHolder
{
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	gap: 5%;
}

#welcomeSplashLogo 
{
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 80%;
}

#welcomeSplashLogo img
{
	width: auto;
    height: 100%;
}

#launchTextContainer
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #ffffffa1;
    padding: 50px;
    color: black;
    max-width: 50%;
    gap: 5%;
}

.welcomeSplashSpan
{
    width: 100%;
    text-align: center;
    font-size: 20px;
	padding: 10px;
}

.mobile #launchTextContainer
{
	max-width: none;
}

.mobile #welcomeSplashLogo
{
	width: 100%;
    height: auto;
}

.mobile #welcomeSplashLogo img {
    height: auto;
    width: 100%;
}