.btn-container {
  width: 100%;
  margin-top: 5vh;
  display: flex;
  align-items: center;
}
.btn-animated {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  position: relative;
  width: 150px;
  height: 50px;
  cursor: pointer;
  background: #000000;
  background: linear-gradient(185deg, #000000d6 16%, #231444d6 100%);
  border: 1px solid #231444;
  outline: none;
  transition: background-color 1s ease-in-out;
}

.btn-container .btn-animated:first-child {
  margin-right: 24px;
}

.btn-container a .btn-animated:first-child {
  margin-right: 0;
}

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

.btn-animated:hover {
  background: #000000;
  background: linear-gradient(185deg, #00000080 16%, #23144480 100%);
}

.btn-animated:first-child:hover {
  background: #00000030;
}

.btn-animated:hover svg {
  stroke-dashoffset: -480;
}

.btn-animated span {
  color: #dedede;
  font-size: clamp(14px, 4vw, 18px);
  font-family: Russo One;
  line-height: 0;
}
