.button-1 {
  border: none;
  border-radius: 40px;
  background: linear-gradient(
    to right,
    #bf953f,
    #fcf6ba,
    #b38728,
    #fbf5b7,
    #aa771c
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgb(121, 103, 3);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition-duration: 3s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.144);
  background-size: 200% 200%;
  padding: 12px 12px;
}

.button-1:hover {
  transform: scale(0.95);
  transition-duration: 3s;
  animation: gradient 5s ease infinite;
  background-position: right;
}

.button-2 {
  display: inline-flex;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  padding: 0.8em 2em 0.8em 2.5em;
  font-size: 15px;
  font-weight: bold;
  border-radius: 15px;
  color: #f6fff6;
  letter-spacing: 0.3em;
  text-shadow: -2px 2px 5px #33fd30;
  border: 2px solid #bbfeb1;
  box-shadow: 0 0 0px 1px #42f112, 0 0 10px 2px #33fd30,
    inset 0 0 0px 1px #42f112, inset 0 0 10px 2px #33fd30;
  transition: 100ms;
}

.button-2:hover {
  box-shadow: 0 0 0px 1px #42f112, 0 0 10px 2px #33fd30,
    inset 0 0 0px 1px #42f112, inset 0 0 30px 2px #33fd30;
  text-shadow: 0 0 10px #33fd30;
  transform: translateY(-5px);
  color: #f6fff6;
}

.button-2:active {
  box-shadow: 0 0 0px 1px #42f112, 0 0 25px 2px #33fd30,
    inset 0 0 0px 1px #42f112, inset 0 0 30px 2px #33fd30;
  transform: translateY(1px);
}

.button-3 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #e8e8e8;
  padding: 15px 30px;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.button-3:before {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 20%;
  background-color: #e8e8e8;
  translate: -100% 0;
  rotate: 45deg;
  transition: all 0.4s ease;
  color: black;
}

.button-3:hover {
  color: #e8e8e8;
  background-color: #8364e8;
  box-shadow: 0 0 24px 8px rgba(131, 100, 232, 0.4);
}

.button-3:hover:before {
  translate: 100%;
}

.button-3:active {
  scale: 0.95;
  box-shadow: 0 0 16px 4px rgba(131, 100, 232, 0.4);
}

.button-4 {
  display: inline-flex;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1em 1.6em;
  border: 0;
  transition: all 0.5s ease-in-out;
  font-size: 17px;
  letter-spacing: 0.1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: rgb(0, 0, 0);
  font-weight: bolder;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 26px;
  box-shadow: 0px 0px 0px 0px rgba(255, 145, 217, 0.5),
    inset -8px -8px 16px 0px rgba(255, 145, 218, 0.973),
    inset 0px 11px 28px 0px rgb(255, 255, 255);
}

.button-4:hover {
  transition: all 0.5s ease-in-out;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 26px;
  box-shadow: 0px 0px 0px 0px rgba(255, 145, 239, 0.483),
    inset 8px -8px 16px 10px rgb(255, 145, 244),
    inset 0px 11px 28px 0px rgb(255, 255, 255);
}

.button-4:active {
  border-radius: 26px;
  box-shadow: 0px 0px 0px 0px rgba(255, 145, 239, 0.822),
    inset -8px -8px 16px 10px #ff91dc99,
    inset 0px 11px 28px 50px rgb(255, 255, 255);
}

.button-5 {
  align-self: center;
  background-color: #fff;
  background-image: none;
  background-position: 0 90%;
  background-repeat: repeat no-repeat;
  background-size: 4px 3px;
  border-radius: 15px 225px 255px 15px 15px 255px 225px 15px;
  border-style: solid;
  border-width: 2px;
  box-shadow: rgba(0, 0, 0, 0.2) 15px 28px 25px -18px;
  box-sizing: border-box;
  color: #41403e;
  cursor: pointer;
  display: inline-block;
  font-family: Neucha, sans-serif;
  font-size: 1rem;
  line-height: 23px;
  outline: none;
  padding: 0.75rem;
  text-decoration: none;
  transition: all 235ms ease-in-out;
  border-bottom-left-radius: 15px 255px;
  border-bottom-right-radius: 225px 15px;
  border-top-left-radius: 255px 15px;
  border-top-right-radius: 15px 225px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-5:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 2px 8px 8px -5px;
  transform: translate3d(0, 2px, 0);
}

.button-5:focus {
  box-shadow: rgba(0, 0, 0, 0.3) 2px 8px 4px -6px;
}
