* {
  padding: 0;
  margin: 0;
  text-decoration: 0;
  text-decoration: none;
  font-family: sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: white;
}

body.no_scroll {
  overflow: hidden;
  height: 100vh;
}

#overlay {
  position: fixed;
  top: -10vh;
  left: -10vw;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 9;
  width: 120vw;
  height: 120vh;
  transform: opacity(0);
  transition: 200ms ease-in-out;
}

#overlay.active {
  pointer-events: all;
  backdrop-filter: blur(5px);
  transform: opacity(1);
  transition: 200ms ease-in-out;
}

h1,
h2,
h3,
h4 {
  font-family: vintage;
  color: rgb(105, 188, 105);
  font-size: 3vw;
  margin: 5vw;
  margin-bottom: 0;
}

@font-face {
  font-family: vintage;
  src: url(assets/typo/Vintage-Rovery.otf);
}

@media screen and (max-width: 550px) {
  h1,
  h2,
  h3,
  h4 {
    font-size: 5vw;
  }
}
