* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  background: linear-gradient(45deg, #f5e3d8, #f5c4c5);
}

html {
  scroll-behavior: smooth;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotating {
  animation: rotate 8s linear infinite;
}
