/* ===== General & Root ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--background-light);
  line-height: 1.6;
  width: 100%;
  padding-top: 90px; /* Add space for the fixed header */
}

html {
    width: 100%;
    scroll-behavior: smooth;
}


/* ===== General Components ===== */
.button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.button:hover {
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}