@import url('https://fonts.googleapis.com/css?family=Audiowide&display=swap');

body {
    margin: 0px;
    overflow: hidden;
    /*background: radial-gradient(circle, #240015 0%, #12000b 100%);*/

}

h1 {
    text-align: center;
    font-family: Audiowide;
    font-size: 40px;
    color: #12000b;
    /*text-shadow: 0px 0px 4px #12000b;*/
    animation: fadeInText 2s ease-in 0.3s forwards, hueRotate 6s ease-in-out 3s infinite;
}

div {
    color: #ff005d;
}

.backgrnd {
    background: radial-gradient(circle, #240015 0%, #12000b 100%);
    position: absolute;
    top: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    overflow: hidden;
    animation: hueRotate 6s ease-in-out 3s infinite;

}

.container {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.loader-box {

    width: 80%;
    height: 30px;
    /*border: 2px solid #333;
  border-radius: 10px;
  background-color: #f0f0f0;*/
    overflow: visible;
    /*box-shadow: 0 0 10px rgba(0,0,0,0.2);*/
}

.progress-bar {
    height: 100%;
    width: 0%;
    /* background: linear-gradient(90deg, #4caf50, #81c784); */
    background: #ff005d;
    box-shadow: 0 0 10px #ff005d;
    transition: width 0.3s ease;
    border-radius: 5px;
    animation: hueRotate 6s ease-in-out 3s infinite;
    min-width: 90px;

}

.label {
    font-family: sans-serif;
    margin: 0 10px 0 10px;
    font-family: Audiowide;
    font-size: 1em;
    animation: hueRotate 6s ease-in-out 3s infinite;

}

.percent {
    font-family: Audiowide;
    font-weight: bold;
    font-size: 1.0em;
    width: 100%;
    height: 100%;
    color: #12000a;

    display: flex;
    align-items: center;
    justify-content: center;
}

.backBtn {
    height: 40px;
    width: 200px;
    border-radius: 5px;
    background-color: #ff005d;
    border: 2px #ff005d solid;
    font-family: Audiowide;
    font-size: 1.5em;
    animation: hueRotate 6s ease-in-out 3s infinite;
}

.backBtn:hover {
    background-color: transparent;
    box-shadow: 0px 0px 4px #ff005d;
    text-shadow: 0px 0px 4px #ff005d;

    color: #ff005d;
    vertical-align: middle;
    cursor: pointer;
    animation: hueRotate 6s ease-in-out 3s infinite;
}

.containerBack {
    position: fixed;
    bottom: 10px;
    left: 10px;
}

.version {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-family: Audiowide;
    animation: hueRotate 6s ease-in-out 3s infinite;
}

::selection {
    background: #ff005d;
    color: #ffffff;
}

@keyframes hueRotate {
    0% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(-100deg);
    }

    100% {
        filter: hue-rotate(0deg);
    }
}

@keyframes fadeInText {
    1% {
        color: #12000a;
        text-shadow: 0px 0px 4px #12000a;
    }

    70% {
        color: #ff005d;
        text-shadow: 0px 0px 14px #ff005d;
    }

    100% {
        color: #ff005d;
        text-shadow: 0px 0px 4px #ff005d;
    }
}

@keyframes fadeInProgress {
    1% {
        background-color: #12000a;
        box-shadow: 0px 0px 4px #12000a;
    }

    70% {
        background-color: #ff005d;
        box-shadow: 0px 0px 14px #ff005d;
    }

    100% {
        background-color: #ff005d;
        box-shadow: 0px 0px 4px #ff005d;
    }
}

@media screen and (width <=31rem) {
    .container {
        height: 100px;
    }

    .percent {
        font-size: 0.8em;
    }

    .label {
        font-size: 0.8em;
    }


}