* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: rgb(223, 223, 223);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}
.content {
  width: 550px;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 35px;
}
.content div {
  background: #111;
  width: 450px;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.content div:nth-child(2) {
  background: #111;
  width: 300px;
  height: 40px;
  border-radius: 20px;
}
.content:hover div:nth-child(1) {
  transform: rotate(55deg);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: rgb(223, 223, 223);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  font-family: 'Roboto', sans-serif;
}
.content {  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  font-weight: 500;
}