body {
    margin: 0;
    padding: 0;
    background: #161616 !important;
}

.myBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;

    opacity: 0;
    animation: appear 0.5s forwards;
    animation-delay: 0.5s;
}

.smallFont {
    font-size: 15px;
    line-height: 20px;
    /* text-shadow: 0 0 10px #941333; */
}

.smallFont2 {
    font-size: 10px;
    line-height: 35px;
    color: #ffffff;
    animation: animateLoading 1.5s infinite ease-in-out;
    /* text-shadow: 0 0 10px #941333; */
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px !important;
    height: 150px !important;
    background: transparent;
    border: 3px solid #a5a5a500;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-family: 'Lato', 'Noto Sans', sans-serif;
    font-size: 40px;
    padding-top: 35px;
    color: #941333;
    letter-spacing: 4px;
    text-transform: uppercase;
    /* text-shadow: 0 0 10px #941333; */
    box-shadow: 0 0 50px #ffffff00;
    background-color: #17171700;
    /* Made these all opacity=0 so that the weird stretching you get is hidden */

    opacity: 1;
    /* animation: appear 0.5s forwards;
    animation-delay: 0.5s; */
}

.ring:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 164px !important;
    height: 164px !important;
    /* border:3px solid transparent; */
    /* border-top:5px dotted #941333; */
    border-right: 5px solid #941333;
    border-left: 5px solid #941333;
    /* border-bottom:5px dotted #941333; */
    border-radius: 50%;
    animation: animateC 5s linear infinite;
}

/* .spanrotate
{
  display:block;
  position:absolute;
  top:calc(50% - 2px);
  left:50%;
  width:50%;
  height:4px;
  background:transparent;
  transform-origin:left;
  animation:animate 2s linear infinite;
}
.spanrotate:before
{
  content:'';
  position:absolute;
  width:16px;
  height:16px;
  border-radius:50%;
  background:#941333;
  top:6px;
  right:-8px;
  box-shadow:0 0 20px #941333;
} */
@keyframes animateC {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}

@keyframes animateLoading {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Keyframe for appearance animation */
@keyframes appear {
    to {
        opacity: 1;
    }
}