* {
  margin: 0px;
  padding: 0px;
  box-sizing: border box;
}

main {
  display: flex;
  justify-content: center;
}
main > a {
  background-image: linear-gradient(yellow, blue);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  width: 50px;
  height: 30px;
  justify-content: center;
  align-items: center;
  margin-bottom: 200px;
}

a:hover {
  background-image: linear-gradient(red, orange);
  width: 100px;
  transition-delay: 2s;
  transition: width 3s, linear 2s;
  transform: rotate(720deg);
}/*# sourceMappingURL=style.css.map */