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

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: "Poppins", "Bell MT", sans-serif; */
  font-family: "Nunito", sans-serif;
}

.container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.visible {
  opacity: 1;
  pointer-events: all;
  z-index: 1;
}
