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

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--page-bg);
  height: 100%;
  font-family: 'Poppins';
}

a {
  text-decoration: none;
}

#root {
  height: 100%;
}

:root {
  --page-bg: #f7f8fd;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
