.loading-gif {
    max-width: 500px;
}

.pre-loader {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.pre-loader.hidden {
    animation: fadeOut 11s;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}