JSFiddle - React, Tailwind, and code Playground

by Aaron von Schassen

HTML

<p id="deutsch">Deutschland</p>
<p id="oesterr">Ă–sterreich</p>

<div>
  Text
</div>

CSS

div {
  width: 150px;
  height: 150px;
  background: lightgrey;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease-in-out;
}

#deutsch:hover ~ div {
  transform: rotate(45deg);
}

#oesterr:hover ~ div {
  transform: rotate(90deg);
}