html {
  scroll-behavior: smooth;
}

button {
  background-color: #bc8e31;
  padding: 6px 15px;
  text-transform: uppercase;
  font-size: 18px;
  font-family: "Bacasime Antique", serif;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

button:hover {
  background-color: #b07f1f;
}
h1 {
  font-family: "Bacasime Antique", serif;
  text-transform: uppercase;
}
h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: hsl(0, 0%, 80%);
}
@media (max-width: 400px) {
  button {
    font-size: 16px;
  }
  .logo {
    width: 80px;
    height: 60px;
  }
}
.tag {
  font-family: "Bacasime Antique", serif;
  font-size: 16px;
  text-transform: uppercase;
}
p {
  font-weight: 300;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
