@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  height: 100vh;
  background: #f1f5ff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  height: 60px;
  width: 200px;
  color: #fff;
  background: #000;
  font-size: 18px;
  text-decoration: none;
  margin: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  position: relative;
}

.btn1 span {
  margin-left: 10px;
  width: 0;
  overflow: hidden;
  transition: 0.5s;
}
.btn1:hover span {
  width: 30px;
}

.btn2 {
  box-shadow: 0px 0px 0 #f4005c;
}
.btn2:hover {
  box-shadow: 8px 10px 0 #f4005c;
}

.btn3:hover {
  background: transparent;
  border: 2px solid #000;
  color: #000;
  padding-top: 5px;
}
.btn3::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid #000;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  transition: top 0.5s, left 0.5s;
}
.btn3:hover::after {
  top: 5px;
  left: 5px;
  box-sizing: content-box;
}
.btn4:hover {
  background: transparent;
  color: #000;
}
.btn4::before,
.btn4::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  transition: top 0.5s, left 0.5s;
  z-index: -1;
}
.btn4::before{
  border-left: 2px solid #000;
  border-top: 2px solid #000;
}
.btn4::after{
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}
.btn4:hover::before{
  top: -5px;
  left: -15px;
}
.btn4:hover::after{
  top: 5px;
  left: 15px;

}
