:root {
    --main-bg-color: #5fa2dd;
}

.exactCenter {
    width: 500px;
    height: 250px;
    position: fixed;
    background-color: var(--main-bg-color);
    top: 50%;
    left: 50%;
    border: 2px solid white;
    border-radius: 25px;
    text-align: center;
    color: white;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}

.splashTitleTxt, .loadingElement, .copyright {
    display: flex;
    justify-content: center;
}

.splashTitleTxt {
    font-size: 55px;
    font-weight: bold;
    font-family: 'Open Sans', 'Helvetica Neue', helvetica, arial, verdana, sans-serif;
    margin-bottom: auto;
}

.loadingElement {
    margin-bottom: auto;
    flex-direction: column;
    row-gap: 15px;
}

.loadTxt {
    font-size: 12px;
    font-weight: bold;
}

.loadSpinner > div {
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.loadSpinner .loadBounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loadSpinner .loadBounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.copyright {
    font-size: 10px;
    margin-bottom: 1%;
    font-weight: bold;
}