/* From Uiverse.io by SujitAdroja */ 
.btn3 {
  position: relative;
  background: none;
  border: 2px solid black;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
}
.btn3::before {
  content: "";
  height: 0%;
  width: 0%;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  position: absolute;
  background-color: #0202b6;
  transition: all 0.3s;
}
.btn3:hover {
  border: 2px solid #0202b6;
  color: white;
}
.btn3:hover::before {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 0.3rem;
}
