﻿
:root {
    --effect: hover 1s linear infinite;
}

.loadBG {
    background: rgba(0,0,0,0.90);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    top: 0px;
}


#load {
    text-align: center;
    position: relative;
    margin: auto;
    top: 30%;
}

    #load p {
        display: inline-block;
        text-transform: uppercase;
        text-align: center;
        font-size: 4em;
        font-family: arial;
        font-weight: 600;
        transform: scale(.5);
        color: #121212;
        -webkit-text-stroke: 2px gray;
    }

        #load p:nth-child(1) {
            animation: var(--effect);
        }

        #load p:nth-child(2) {
            animation: var(--effect) .125s;
        }

        #load p:nth-child(3) {
            animation: var(--effect) .25s;
        }

        #load p:nth-child(4) {
            animation: var(--effect) .375s;
        }

        #load p:nth-child(5) {
            animation: var(--effect) .5s;
        }

        #load p:nth-child(6) {
            animation: var(--effect) .675s;
        }

        #load p:nth-child(7) {
            animation: var(--effect) .75s;
        }

@keyframes hover {
    0% {
        transform: scale(.5);
        color: #121212;
        -webkit-text-stroke: 2px gray;
    }

    20% {
        transform: scale(1);
        color: pink;
        -webkit-text-stroke: 3px red;
        filter: drop-shadow(0 0 1px black)drop-shadow(0 0 1px black)drop-shadow(0 0 3px red)drop-shadow(0 0 5px red)hue-rotate(10turn);
    }

    50% {
        transform: scale(.5);
        color: #121212;
        -webkit-text-stroke: 2px gray;
    }
}


@keyframes go-left-right {
    from {
        left: -10px;
    }

    to {
        left: calc(5% - 30px);
    }
    /* animasyonu 100%-50px'de bitir */
}
