.loader {
    color: #DA70D6;
    font-family: Consolas, Menlo, Monaco, monospace;
    font-weight: 900;
    font-size: 125px;
    opacity: 0.8;
}

.loader:before {
    content: "{";
    display: inline-block;
    animation: pulse 0.4s alternate infinite ease-in-out;
}

.loader:after {
    content: "}";
    display: inline-block;
    animation: pulse 0.4s 0.3s alternate infinite ease-in-out;
}

body {
    background-color: #1c1c1c;
    color: #fff;
}

body redirect {
    align-items: center;
    text-align: center;
}

.center {
    margin: auto;
    width: 10%;
    margin-top: 18%;
}

@keyframes pulse {
    to {
        transform: scale(0.8);
        opacity: 0.5;
    }
}


.loader1 {
    display: block;
    position: relative;
    height: 12px;
    width: 80%;
    border: 1px solid #fff;
    border-radius: 10px;
    overflow: hidden;
}

.loader1::after {
    content: '';
    width: 40%;
    height: 100%;
    background: #DA70D6;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    animation: animloader 2s linear infinite;
}

@keyframes animloader {
    0% {
        left: 0;
        transform: translateX(-100%);
    }

    100% {
        left: 100%;
        transform: translateX(0%);
    }
}

.center1 {
    margin: auto;
    width: 15%;
    margin-top: 1%;
    margin-left: 43.15%;
}

body h1 {
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}

a:link {
    text-decoration: none;
}

a:hover {
    color: #DA70D6;
    background-color: transparent;
    text-decoration: underline;
}

body span {
    color: #DA70D6;
}