* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  background: transparent;
  font-family: "Poppins", sans-serif;
}

body {
  background: rgb(255, 255, 255, 1);
  color: white;
  overflow: hidden;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For IE and Edge */
  overflow-y: scroll;
  height: 100vh;
}

body::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}

.success {
  color: green;
}
