/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #c6bdab;
  color: black;
  font-family: Verdana;
}


@keyframes rotate360 {
  from {
    transform: rotate(0deg); /* Starting state: no rotation */
  }
  to {
    transform: rotate(360deg); /* Ending state: full rotation */
  }
}

.lips {
  height: 100px;
  
  /*transform: translate(10 degrees);*/
}

.lips:hover {
  transform: scale(1.2);
}

.rc-record {
  height: 100px;
  animation-name: rotate360; /* Name of the animation */
  animation-duration: 2s; /* Duration of one animation cycle */
  animation-iteration-count: infinite; /* Number of times the animation repeats (infinite for continuous) */
  animation-timing-function: linear; /* Speed curve of the animation (linear for consistent speed) */
}
