
.button-box {
  height: auto;
  width: 200px;
  align-items: left;
  justify-content: left;
  margin:0;
  display: grid;
  text-decoration: none;
}

/* Button 1 */
.button {
  height: 45px;
  width: 200px;
  display: flex;
  border-radius: 2.5rem;
  transition: 0.5s;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  background-image: linear-gradient(
    to right,
    #8081cf,
    #847dc9,
    #8778c3,
    #8a74bd,
    #8d70b7,
    #8f6db2,
    #9169ac,
    #9266a7,
    #9362a1,
    #935e9a,
    #935b93,
    #93578d
  );
  color: white;
  animation: blurr 2s;
  animation-iteration-count: infinite;
  outline: none;
  cursor: pointer;
  border: none;
}

.button-box img {
  margin-left: auto;
  transition: 0.5s;
  width: 2.5rem;
  height: 2.5rem;
}

@keyframes blurr {
  0%,
  100% {
    box-shadow: 0 0 10px var(--handshake);
  }

  50% {
    box-shadow: 0 0 36px var(--handshake);
  }
}

@keyframes fade {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0%;
  }
}

.button-box .title {
  font-weight: bold;
  margin-top: 0.3rem;
  margin-left: 1rem;
  transition: 0.5s;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #0f5a89;
}
@media(max-width:768px){
  .button-box .title {
    margin-left: 0rem;
  }
}
.button:hover .title {
  transform: translateX(-140px);
  animation: fade 0.5s;
  opacity: 0%;
}

.button:hover img {
  transform: translateX(-145px);
}

.button-box .description {
  position: absolute;
  margin-top: 0.5rem;
  font-weight: bold;
  line-height: 1rem;
  font-size: 1rem;
  font-style: italic;
  transition: 0.5s;
  opacity: 0%;
  margin-left: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #0f5a89;
}

.button:hover .description {
  transform: translateX(50px);
  opacity: 100%;
}

/* Button 2 */
.button2 {
  height: 45px;
  width: 180px;
  display: flex;
  border-radius: 2.5rem;
  transition: 0.5s;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
 background-image: linear-gradient(
  to right,
  #ff7e5f,
  #ff8a5c,
  #ff965a,
  #ffa358,
  #ffaf55,
  #ffbb52,
  #ffc74f,
  #ffd34d,
  #ffdf4a,
  #ffeb48,
  #fff745,
  #ffff42
);


  color: white;
  animation: blurr2 2s;
  animation-iteration-count: infinite;
  outline: none;
  cursor: pointer;
  border: none;
}

.button2:hover .title {
  transform: translateX(-40px);
  animation: fade 0.5s;
  opacity: 0%;
}

.button2:hover img {
  transform: translateX(-115px);
}

.button2:hover .description {
  transform: translateX(22px);
  opacity: 100%;
}

@keyframes blurr2 {
  0%,
  100% {
    box-shadow: 0 0 10px var(--btn2);
  }

  50% {
    box-shadow: 0 0 36px var(--btn2);
  }
}

/* Button 3 */
.button3 {
  height: 45px;
  width: 200px;
  display: flex;
  border-radius: 2.5rem;
  transition: 0.5s;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
background-image: linear-gradient(
  to right,
  #ff726f,
  #ff7f76,
  #ff8b7e,
  #ff9885,
  #ffa58c,
  #ffb293,
  #ffbe9b,
  #ffcba2,
  #ffd8a9,
  #ffe4b1,
  #fff1b8,
  #fffec0
);

  animation: blurr3 2s;
  animation-iteration-count: infinite;
  outline: none;
  cursor: pointer;
  border: none;
}

.button3:hover .title {
  transform: translateX(-40px);
  animation: fade 0.5s;
  opacity: 0%;
}

.button3:hover img {
  transform: translateX(-145px);
}

.button3:hover .description {
  transform: translateX(22px);
  opacity: 100%;
}

@keyframes blurr3 {
  0%,
  100% {
    box-shadow: 0 0 5px var(--btn3);
  }

  50% {
    box-shadow: 0 0 10px var(--btn3);
  }
}

.watermark {
  text-align: center;
  color: white;
}

.watermark a {
  color: #8081cf;
}