body{
  font-family: monospace;  
  text-align: center;
  font-size: xx-large;
  color: #91ff00;
  background-color: #050d2b;
}
.animate-me{
  background-color:rgb(255, 0, 200);
  height: 200px;
  width: 200px;
  border: 50px;
  
}
.t2 {
  transform: rotate(15deg);

}

.t2 {
  left:51vw;
  top: 1vh;
  position:absolute;
  color:#ff0000;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: xx-large;
}
@keyframes slide-left-to-right {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(1000%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.animate-me{
  animation: slide-left-to-right 233ms;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  /* animation-iteration-count: infinite; */
}
  .perryfeldt{
    margin-top: -350px;
    margin-left: auto;
    margin-right: auto;
    background-color: black;
    height: 350px;
    width: 350px;
    box-shadow:1px 1px 60px 30px red;
    animation: loading 6.6s;
    /*animation: scale-up 1s;*/
    /*animation: expand-shrink 1s;*/
    animation-iteration-count: infinite;
    /*animation-direction: alternate;*/
    animation-timing-function: cubic-bezier(0.055, 0.01, 0.815, 0.355)
  }

  @keyframes scale-up {
    0% { transform: scaleX(0.8);
     } 
     100% { transform: scaleX(1);
    } 
  }

.scale-up { 
    animation: scale-up ; 
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spinner{
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  border: 10px solid yellow;  
  border-top: 10px solid transparent !important;
  border-radius: 50%;
  width: 1px;
  height: 1px;
  animation: loading 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.breathe{
  height: 350px;
  width: 350px;
  margin-top: 300px;
  border-radius: 50%;
  padding-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgb(0, 255, 85);
  animation: expand-shrink 50ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;

}
@keyframes expand-shrink {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2.5);
  }
}
