html{
    height: 100vh;
}

body {
    background: linear-gradient(rgba(255, 255, 255 ,1), rgb(243, 243, 243));
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.mainContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loading {
    border-radius: 5px;
    overflow: hidden;
    max-width: 200px;
    margin: 0 auto;
    padding: 10px;
}

.loading img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

.mainContainer p {
    text-align: center;
    font-weight: 500;
    font-family: Helvetica, sans-serif;
    color: black;
}

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    animation-fill-mode: both;
    animation: bblFadInOut 1.8s infinite ease-in-out;
}

.loader {
    color: black;
    font-size: 6px;
    position: relative;
    text-indent: -9999em;
    transform: translateZ(0);
    animation-delay: -0.16s;
}

.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}

.loader:before {
    left: -3.5em;
    animation-delay: -0.32s;
}

.loader:after {
    left: 3.5em;
}

@keyframes bblFadInOut {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}