body {
  font-family: "Stick No Bills", sans-serif;
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
}

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: red;
  transition: background-color 2s ease-out, width 1s ease, box-shadow 1s linear;
  width: 333px;
  height: 333px;
  margin-top: 50%;
  /* text-align: bottom; */
}

.box {
  animation: box 9s ease-out;
  box-shadow: 10px;
  border-radius: 100%;
  animation-iteration-count: infinite;
}
@keyframes box {
  from {
    transform: rotate3d(0, 0, 0, 0);
  }
  to {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.circle {
  color: white;
  /* background: white;
  width: 33px;
  height: 33px;
  border-radius: 100%; */
}
.title {
  text-align: center;
}

.p {
  position: absolute;
  bottom: 0;
}
/* img {
  width: 400px;
}
img:hover {
  animation-name: achicar;
  animation-duration: 3s;
}
@keyframes achicar {
  from {
    width: 400px;
  }
  to {
    width: 200px;
  }
} */
