html {
  scroll-behavior: smooth;
}

.mobi {
  display: none;
}

body {
  background: #0f0f0f;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

h1 {
  color: #fff;
  font-size: 2.75rem;
  line-height: 1.1em;
  margin-top: 10px;
  font-weight: 700;
}

h2 {
  color: #01bbd1;
  font-size: 1.5rem;
  text-shadow: 0px 0px 10px rgba(1, 187, 209, 0.5);
}

h3 {
  color: #01bbd1;
  font-family: "agrandirwide_light", sans-serif;
  border: 2px solid #01bbd1;
  width: max-content;
  border-radius: 15px;
  font-size: 0.9rem;
  padding: 5px 15px;
  box-shadow: 0px 0px 10px rgba(1, 187, 209, 0.5);
}

.adopt-card.svelte-8q9u6u h3.svelte-8q9u6u {
  border: none;
  box-shadow: none;
}

.tube-video {
  margin-left: auto;
  margin-right: auto;
}

h4 {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.1em;
  margin-top: 10px;
  font-weight: 600;
}

.btn {
  background: #01bbd1;
  max-width: max-content;
  border-radius: 50px;
  padding: 6px 20px;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0px 0px 10px rgba(1, 187, 209, 0.5);
  animation: movebtn 3s infinite;
  transition: 0.3s;
}

@keyframes movebtn {
  0% {
    box-shadow: 0px 0px 10px rgba(1, 187, 209, 0.5);
  }
  50% {
    box-shadow: 0px 0px 20px rgba(1, 187, 209, 0.5);
  }
  100% {
    box-shadow: 0px 0px 10px rgba(1, 187, 209, 0.5);
  }
}

.btn:hover {
  transform: scale(1.025);
}

.terms {
  padding-top: 100px;
  padding-bottom: 100px;
}

.terms h5 {
  text-transform: uppercase;
  color: #fff;
}

.terms h6 {
  color: #fff;
}

.terms ul li {
  color: #a4a4a4;
}

.whats-fixed {
  position: fixed;
  bottom: 120px;
  right: 40px;
  animation: move 3s infinite;
  z-index: 222;
}

@keyframes move {
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
