html {
    min-height: 100vh;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    height: 100%;
    hyphens: auto;
}

.full-page-loader {
    display: flex;
    max-width: 985px;
    margin-left: auto;
    margin-right: auto;
    min-height: 100vh;
    position: relative;
}

.full-page-loader > h1 {
    font-size: 120px;
}

.full-page-loader .full-page-loader-inner {
    width: 100%;
    height: 100%;
    max-width: 985px;
    overflow: hidden;
}

.full-page-loader .full-page-loader-inner > div {
    display: flex;
    position: relative;
}

.full-page-loader .full-page-loader-inner > .title {
    margin-top: 56px;
}

.full-page-loader .full-page-loader-inner > .logo {
    padding-left: 48px;
}

.full-page-loader .full-page-loader-inner  svg {
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 673px;
    margin: 0 auto;
}

.title-component {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.title-component-top {
    font-size: 90pt;
}


@keyframes run {
    0% {right: -100%;}
    25% {right: -50%;}
    50% {right: 0}
    75% {right: 50%;}
    100% {right: 100%;}
}
  