body {
  width: 100%;
  height: 90vh;
  color: #fff;
  background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  background-size: 400% 400%;
  animation: Gradient 15s ease infinite;
  font-family: "Montserrat", sans-serif;
}

@keyframes Gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.linktree.container {
  padding-left: 5px;
  padding-right: 5px;
}
.linktree h2 {
  font-weight: bold;
  text-align: center;
}
.linktree .shake {
  animation: shake-animation 4.72s ease infinite;
  transform-origin: 50% 50%;
}
.linktree .element {
  margin: 0 auto;
  width: 150px;
  height: 150px;
  background: red;
}
@keyframes shake-animation {
  0% {
    transform: translate(0, 0);
  }
  1.78571% {
    transform: translate(5px, 0);
  }
  3.57143% {
    transform: translate(0, 0);
  }
  5.35714% {
    transform: translate(5px, 0);
  }
  7.14286% {
    transform: translate(0, 0);
  }
  8.92857% {
    transform: translate(5px, 0);
  }
  10.71429% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.linktree .text-center {
  text-align: center;
}
.linktree .over-btn {
  padding-bottom: 30px;
}
.linktree .btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.linktree button.btn {
  white-space: normal;
  width: 80%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
  cursor: pointer;
}
.linktree button.btn:hover {
  background-color: #e87c5d;
}
.linktree button.btn:focus {
  outline: none;
  box-shadow: none;
}
@media (max-width: 575.98px) {
  .linktree button.btn {
    width: 100%;
  }
}
.linktree .btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}
.linktree .backdrop {
  margin-bottom: 20px;
}
.linktree img {
  width: 120px;
  height: 120px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  text-align: center;
  display: block;
  margin: 0 auto;
}
.linktree .advertisement {
  white-space: normal;
  width: 80%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0 auto;
}
@media (max-width: 575.98px) {
  .linktree .advertisement {
    width: 100%;
  }
}
.linktree .advertisement h2, .linktree .advertisement p {
  padding: 0;
  margin: 0;
  text-align: left;
}
.linktree .advertisement p {
  padding-top: 10px;
  text-align: left;
}
.linktree .advertisement .info {
  text-align: justify;
}
@media (max-width: 575.98px) {
  .linktree .advertisement .info {
    margin: 0 auto 1rem auto;
  }
  .linktree .advertisement .info h2, .linktree .advertisement .info p {
    text-align: center;
  }
}
.linktree .advertisement img {
  width: auto;
  height: 100%;
  display: block;
  text-align: center;
  margin: 0 auto;
  max-height: 65px;
}
@media (max-width: 575.98px) {
  .linktree .advertisement img {
    margin-bottom: 1rem;
  }
}
.linktree .advertisement button {
  display: block;
  margin: 0 auto;
  width: 12em;
  min-height: 2.5em;
  font-size: 1em;
  font-weight: 500;
  color: #fff !important;
  background-color: #ea6c48;
  border: none;
  border-radius: 2em;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  outline: none;
}
@media (max-width: 575.98px) {
  .linktree .advertisement button {
    width: 100%;
  }
}

.vertical-center {
  min-height: 100%; /* Fallback for browsers do NOT support vh unit */
  min-height: 99vh; /* These two lines are counted as one :-)       */
  display: flex;
  align-items: center;
}