
body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    background-color: rgb(65, 65, 65);
    width: 99vw;
    margin: 0 auto;
    font-size: 25px;
}
img {
    width: 900px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.original,
  .box {
    border-radius: 200px;
      color: white;
    height: 100px;
    text-align: center;
    font-size: 80px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  }  
  .spin {
    cursor: pointer;
    transform-style: flat;
  }
  .spin:hover {
      animation: anime 3s linear infinite;
  }
  @keyframes anime {
    0% {
      transform: rotateY(360deg);
      animation-iteration-count: infinite;
      animation-delay: 0s;
    }
