.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.whats-fixed {
  position: fixed;
  bottom: 40px;
  right: 40px;
  animation: move 3s infinite;
  z-index: 222;
  max-width: 65px;
}

@keyframes move {
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}

html {
  font-size: 16px;
  font-family: 'Kanit', sans-serif;
}
a {
  transition: 0.3s;
}

.main {
  padding: 70px 10px;
  background: url(/img/bg.webp) no-repeat center center;
  background-size: cover;
}
.btn {
  background-color: #f2f2f2;
  color: #000;
  max-width: fit-content;
  padding: 10px 30px;
  box-shadow: 0px 0px 10px 1px #f2f2f2;
  font-size: 1.5625rem;
  font-weight: 600;
}
.btn:hover {
  border-radius: 50px 0px 50px 0px;
}
.btn-2 {
  background-color: #0001CF;
  color: #f2f2f2;
  max-width: fit-content;
  padding: 10px 30px;
  box-shadow: 0px 0px 10px 1px #0001CF;
  font-size: 1.5625rem;
  font-weight: 600;
  border: 1px solid #f2f2f2;
}
.btn-2:hover {
  border-radius: 50px 0px 50px 0px;
}