.splashPage {
    min-height: 320px;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--pageBackgroundColor);
    font-family: 'Inter';
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Splash header */

.splashHeader {
    text-align: center;
    max-height: 100px;
    width: 100%;
    position: fixed;
    top: 5%;
    font-size: 36px;
    color: var(--mediumFontColor);
}

.spinner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 126px);
    width: 100%;
    padding-top: 5%;
    box-sizing: border-box;
}

.spinner-wrapper {
    width: 50%;
    max-width: 400px;
    max-height: 400px;
    height: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

#spinner {
    animation: rotation 2s infinite linear;
    animation-play-state: running;
}


#logo {
    background-image: url("./../img/Logo_400x400.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
    width: 100%;
    height: 100%;
    max-height: 200px;
    max-width: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Splash footer */

.splashFooter {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 126px;
    color: var(--mediumFontColor);
}

.mobileApps {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    overflow: hidden;
    text-align: center;
    color: var(--mediumFontColor);
    min-height: 67px;
    max-height: 84px;
    max-width: 500px;
}

.left-line,
.right-line {
    height: 50%;
    min-height: 42px;
    width: 110px;
    border-bottom: 1px solid var(--mediumFontColor);
    box-sizing: border-box;
}

.splashFooter img {
    margin: 10px;
    background-color: var(--disabledColor);
    clip-path: circle(24px);
}

.mobileLabel {
    text-align: center;
    font-size: 34px;
    color: var(--mediumFontColor);
    font-weight: 600;
    width: 250px;
    margin: auto;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@media all and (max-width: 902px) {
    .splashHeader {
        font-size: 30px;
    }
}

@media all and (max-width: 600px) {
    .splashHeader {
        font-size: 16px;
    }
}

@media all and (max-width: 450px) {
    .splashHeader {
        font-size: 14px;
    }
}

@media all and (max-height: 400px) {
    .splashHeader {
        top: 2%;
        font-size: 12px;
    }
}