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

    font-family: 'Outfit';
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 10;

  backdrop-filter: blur(12px);

  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0));
}
