@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&display=swap");
body {
  padding: 0;
  margin: 0;
  background-color: #17141d;
  color: white;
  font-family: "DM Mono", monospace;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.button {
  position: relative;
  padding: 1.5rem 4rem;
  border:1px solid #fccd89; 
}
.button:not(:last-child) {
  margin-right: 40px;
}

.btn-border::before, .btn-border::after {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  border: inherit;
  transition: 0.5s;
}
.btn-border::before {
  top: -15px;
  left: -15px;
  border-width: 2px 0 0 2px;
}
.btn-border::after {
  bottom: -15px;
  right: -15px;
  border-width: 0 2px 2px 0;
}
.btn-border:hover::before, .btn-border:hover::after {
  width: calc(100% + 28px);
  height: calc(100% + 28px);
}

.btn-skew {
  overflow: hidden;
}
.btn-skew::before {
  content: "";
  top: 0;
  left: -25px;
  background-color: #dc3545;
  position: absolute;
  height: 100%;
  width: 0%;
  transform: skewX(35deg);
  z-index: -1;
  transition: width 1s;
}
.btn-skew:hover::before {
  width: 150%;
}

.btn-cyber-punk {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%, 0 75%);
  background-color: #dc3545;
  transition: all 0.5s;
}
.btn-cyber-punk:hover {
  background-color: #e04b59;
  color: #17141d;
}