:root {
  --dark-black: #121317;
  --light-black: #06111c;
  --yellow: #f2db0b;
  --gray: #808080;
  --background: #212020;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Mono", sans-serif;
  background-color: var(--background);
  overflow-x: hidden;
  /* cursor: none; */
}

a {
  text-decoration: none;
  color: var(--yellow);
  padding: 0.5rem;
  border-radius: 0.2rem;
  transition: ease-in 0.3s;
  border-bottom: 1px solid transparent;
}

p, h1, h2, h3, h4, h5 {
  color: var(--yellow);
  text-align: center; 
}


a:hover {
  opacity: 0.8;
  border-bottom: 1px solid var(--gray);
}

::-webkit-scrollbar {
  background-color: var(--light-black);
  width: 0.3rem;
}
::-webkit-scrollbar-thumb {
  background-color: var(--yellow);
  border-radius: 1rem;
}
::-webkit-scrollbar-track {
  background-color: var(--light-black);
}

li{
  list-style: none;
}

/* .cursor{
  position: fixed;
  width: 2rem;
  height: 2rem;
  border-radius: 80%;
  background: var(--yellow);
} */