@import url("https://fonts.googleapis.com/css2?family=Andada+Pro:wght@500;600;700;800&display=swap");
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 10px;
}

/* vars  */
:root {
  --background: rgb(130, 223, 134);
  --text: black;
}

/* vars end */

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

body {
  transition: background 0.3s ease;
}

/* scrollbar styling */

* {
  scrollbar-width: thin;
  scrollbar-color: rgb(175, 175, 175) rgba(46, 46, 46, 0);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
  opacity: 0;
}

*::-webkit-scrollbar-thumb {
  background-color: rgb(48, 48, 48);
  border-radius: 60px;
  border: transparent;
  opacity: 0;
}

/* scrollbar styling end  */

.nav {
  width: 100%;
  height: 70px;
  background-color: transparent;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 2rem 0 2rem;
}

.section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  color: rgb(2, 0, 0);
  font-family: sans-serif;
  font-size: 72px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.test {
  padding: 0;
}
