@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

@import url(./navbar.css);
@import url("./scroll-up.css");
@import url("./footer.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

::selection {
  background-color: #f5df4e;
}

#preloader {
  background: #1b1d21 url("../images/loader.gif") no-repeat center center;
  background-size: 30%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}

@media screen and (max-width: 440px) {
  #preloader {
    background-size: 50%;
  }
}
