* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  position: relative;
  scroll-behavior: smooth;
}

body {
  font-family: pressio, Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.725rem + 0.4vw, 1.125rem);
}

input, button, select, label {
  font-family: pressio, Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.725rem + 0.4vw, 1.125rem);
}

.yellow-btn {
  background: #FFCD02;
  height: 35px;
  color: #000;
  border: 2px solid #1D1D1B;
  border-radius: 6px;
  padding: 5px 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 1em;
  color: #1D1D1B;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .yellow-btn {
    transition: all 0.3s ease-in;
  }
  .yellow-btn:hover {
    background: #1D1D1B;
    color: #fff;
  }
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  user-select: none;
}

.overlay-grain {
  mix-blend-mode: soft-light;
}

.overlay-white {
  mix-blend-mode: multiply;
}

.overlay-black {
  mix-blend-mode: screen;
}

/*# sourceMappingURL=global.css.map */
