@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@400;700&display=swap");
:root {
  --bs-font-sans-serif: Oxygen !important;
}

body {
  scroll-behavior: smooth !important;
}

.navbar-brand > .brand-title {
  font-size: 2.5rem;
  vertical-align: middle;
  margin-left: 10px;
}

@media only screen and (max-width: 640px) {
  .navbar-brand > .brand-title {
    font-size: 1.8rem;
  }
}

.text-hr {
  display: inline-block;
}

.text-hr::after {
  background-color: var(--bs-light);
  height: 2px;
  width: 100%;
  content: "";
  display: inline-block;
}

.img-games {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

#games .card-title {
  text-align: center !important;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 80px;
  z-index: 996;
  background: var(--bs-light);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  font-size: 28px;
  color: #fff;
  line-height: 0;
  text-decoration: none;
}

.back-to-top:hover {
  background: #18b2c0;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#cover-spin {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #6e42c1ef;
  z-index: 9999;
  display: none;
}

#cover-spin.active {
  display: block;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#cover-spin::after {
  content: "";
  display: block;
  position: absolute;
  left: 48%;
  top: 40%;
  width: 40px;
  height: 40px;
  border-style: solid;
  border-color: var(--bs-light);
  border-top-color: transparent;
  border-width: 4px;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
  animation: spin 0.8s linear infinite;
}

.btn-whatsapp {
  border: none;
  outline: none;
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 130px;
  right: 20px;
  background-color: transparent;
  text-align: center;
}
