*
{
  margin:0;
  padding:0;
  box-sizing: border-box;
  /* font-family: consolas; */
}
.bodyClass{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

}
.circle{
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #34495E;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo{
  position: absolute;
  width: 470px;
  height: 470px;
  background: url(../images/JDlogoblack.png);
  background-size: cover;
  border-radius: 50%;
  filter: brightness(1.5) contrast(1.5);
}
.text{
  position: absolute;
  
  width: 100%;
  height: 100%;
  animation: rotateText 5s linear ;
}
@keyframes rotateText 
{
  0%
  {
    transform: rotate(0deg);
  }
  100%
  {
    transform: rotate(360deg);
  }
}
.text span
{
  position: absolute;
  left: 50%;
  font-size: 1.5em;
  transform-origin: 0px 200px;
}