
.loader{
    background: linear-gradient( to right, #f20530, #f41741, #f42550, #f4315f, #f23d6d );
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.loader h1 {
    position: relative;
    color: rgba(0, 0, 0, .3);
    font-size: 5em
}
.loader p{
    color: white;
}
.loader h1:before {
    content: attr(data-text);
    position: absolute;
    overflow: hidden;
    max-width: 7em;
    white-space: nowrap;
    color: #fff;
    animation: loading 8s linear;
    animation-iteration-count: infinite;
}
.load-main.slow{
    display: none;
}
@keyframes loading {
    0% {
        max-width: 0;
    }
}