@import url('https://fonts.googleapis.com/css?family=Lato:100&display=swap');

.container2 {
  width: 400px;
  height: 400px;
  position: absolute;
  left: 96.5%;
  top: 5%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.center2 {
  width: 180px;
  height: 60px;
  position: absolute;
}

.btn2 {
  width: 180px;
  height: 60px;
  cursor: pointer;
  background: transparent;
  border: 1px solid black;
  outline: none;
  transition: 1s ease-in-out;
}

svg {
  position: absolute;
  left: 0;
  top: 0;
  fill: none;
  stroke: #fff;
  stroke-dasharray: 150 480;
  stroke-dashoffset: 150;
  transition: 1s ease-in-out;
}

.btn2:hover {
  transition: 1s ease-in-out;
  background: #FF6600;
}

.btn2:hover svg {
  stroke-dashoffset: -480;
}

.btn2 span {
  color: white;
  font-size: 18px;
  font-weight: 100;
}
