html body {
    background-position: 25% 25%; !important;
}

.redirectpage_overall {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    place-content: center;
}

.redirectpage_container {
    display: block;
    background-color: #0000004d;
    padding: 5%;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.redirectpage_title {
    font-size: 10pt;
    color: white;
    text-transform: uppercase;
    letter-spacing: 5pt;
    margin-bottom: 4%;
}

.redirectpage_message {
    color: #cfcfcf;
    font-size: 11pt;
}

.redirectpage_nowait {
    margin-top: 20%;
    margin-bottom: -10%;
}

.redirectpage_nowait a {
    background-color: #254ef8;
    color: white;
    padding: 6px 8px;
    border-radius: 3px;
    font-size: 9pt;
    opacity: .8;
    transition: all .25s ease-in-out;
}

.redirectpage_nowait a:hover {
    opacity: 1;
}

.redirectpage_overall::before {
    content: "\F0450";
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 1000px;
    font-family: 'Material Design Icons';
    opacity: .1;
    animation: rotateabit 4.25s linear infinite;
    width: 1000px;
    border-radius: 50%;
    display: flex;
    height: 1000px;
    align-items: center;
    justify-content: center;
}

@keyframes rotateabit {
    from {transform: translate(-50%,-50%) rotate(0deg);}
    to {transform: translate(-50%, -50%) rotate(360deg);}
}