* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

:root {
  --accent: hsl(4, 100%, 58%);

  --main: hsl(0, 0%, 93%);
  --main-dark: hsl(0, 0%, 85%);
  --main-light: hsl(0, 0%, 100%);
  --text-color: hsl(4, 66%, 13%);
  --text-color-transparent: hsla(4, 67%, 13%, 0.5);
}

body {
  font-family: cursive;
  background: var(--main-dark);
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}
a {
  color: var(--accent);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 12px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
