.button-1 {
  border: none;
  border-radius: 40px;
  background: linear-gradient(
    to right,
    #1590ca,
    #fffcd8,
    #0a81b8,
    #faf7d6,
    #3391bc
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgb(3, 78, 121);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition-duration: 3s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.144);
  background-size: 200% 200%;
  padding: 12px 17px;
  color: black;
}

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

.button-2 {
  font-weight: 600;
  background: var(--accent);
  height: 70px;
  line-height: 70px;
  display: inline-block;
  color: #fff;
  border: 2px solid;
  padding: 0 48px;
  position: relative;
  border-radius: 5px;
  font-size: 16px;
  text-transform: capitalize;
  width: fit-content;
  margin: 0 auto;
  transition: var(--transition);
}

.button-2:hover,
.button-2:focus {
  transform: translateY(-5px);
  color: var(--white);
}

.button-3 {
  align-self: center;
  background-color: #c8dcff;
  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(145, 67, 194, 0.2) 15px 28px 25px -18px;
  box-sizing: border-box;
  color: black;
  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-3:hover {
  box-shadow: rgba(8, 37, 117, 0.3) 2px 8px 8px -5px;
  transform: translate3d(0, 2px, 0);
  color: inherit;
}

.button-3:focus {
  box-shadow: rgba(29, 40, 136, 0.3) 2px 8px 4px -6px;
  color: inherit;
}

.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(145, 255, 218, 0.5),
    inset -8px -8px 16px 0px rgba(145, 255, 240, 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: rgb(255, 255, 255);
  border-radius: 26px;
  box-shadow: 0px 0px 0px 0px rgba(145, 251, 255, 0.483),
    inset 8px -8px 16px 10px rgb(145, 255, 246),
    inset 0px 11px 28px 0px rgb(255, 255, 255);
  color: inherit;
}

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

.button-5 {
  background: #6542ff;
  border: 1px solid #6542ff;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: nunito, roboto, proxima-nova, "proximasans-serif";
  font-size: 16px;
  font-weight: 800;
  line-height: 16px;
  min-height: 40px;
  outline: 0;
  padding: 12px 14px;
  text-align: center;
  text-rendering: geometricprecision;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  transition: 0.4s ease-in-out;
}

.button-5:hover,
.button-5:active {
  background-color: initial;
  background-position: 0 0;
  color: #7142ff;
}

.button-5:active {
  opacity: 0.5;
}
