@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.hidden {
  display: none !important;
}

.transform-back-x {
  transform: translateX(0%) !important;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: rgba(179, 145, 24, 0.537254902);
}

/* Webkit (Chrome, Safari) - thumb */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #673147;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

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

footer {
  background: rgba(90, 43, 62, 0.9098039216);
  color: white;
  display: flex;
  justify-content: center;
  padding: 0.75rem 0;
  width: 100%;
  bottom: 0;
  margin-top: 1.5rem;
}