* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  position: relative;
  background-color: rgb(8, 9, 10);
  caret-color: #fcbe00 !important;
}

::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #fcbe00;
}

::selection {
  color: #fff;
  background: #fcbe00;
}

.text-center {
  text-align: center !important;
}

.btn:hover {
  cursor: pointer !important;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
