@import url("fonts.css");

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: white;
  font-family: "Montserrat", sans-serif;
  color: white;
}

/* WebKit browsers */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #111;
  border-radius: 8px;
  border: 2px solid transparent; /* for inner padding */
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #222;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #111 transparent;
}

.grecaptcha-badge {
  z-index: 10000 !important;
}

img {
  display: block;
  transition: opacity 0.3s ease;
  transform: translateZ(0);
  will-change: transform;
}

.lazy-img {
  opacity: 0;
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  display: block;
}

img:not(.lazy-img) {
  opacity: 1;
}

.grecaptcha-badge {
  display: none !important;
}
