/* @font-face {

} */

* {
  margin: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  font-family: sans-serif;
}

/* width */
::-webkit-scrollbar {
  display: none;
}

/* Track */
::-webkit-scrollbar-track {
  display: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  display: none;
}

body {
  overflow-x: hidden;
  left: 0;
  top: 0;
  width: 100%;
  background: rgb(135, 177, 145);
  height: fit-content;
}

a {
  text-decoration: none;
  color: rgb(127, 255, 157);
}

a:hover {
  transition: .1s;
  color: rgb(192, 255, 207);
  text-decoration: underline dotted;
}