@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Lexend+Exa:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0; margin: 0; box-sizing: border-box;
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
}
body {
    color: white;
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 30%, rgba(36, 1, 56, 1) 100%);
}
a {
    color: white;
    text-decoration: none;
}
p {
    font-family: 'Poppins',Arial, Helvetica, sans-serif;
}
li {
    list-style-type: none;
}
#logo-site {
    width: 70px;
}


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

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: var(--mark-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #db27ef;
}
