*, *::after, *::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;

  user-select: none;
}

html {
  width: 100%;
  height: 100vh;

  background: #FEC81D;

  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

body::-webkit-scrollbar {
  width: 8px;
  width: 0;
}

body::-webkit-scrollbar-track {
  background: #FEC81D;
  border-radius: 7px;
}

body::-webkit-scrollbar-thumb {
  background: #FFBB00;
  border-radius: 7px;
}
