/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&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=Orbitron:wght@400..900&display=swap');



/* GLOBAL */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poiret One', sans-serif;
    text-decoration: none;
    list-style: none;
}



/* HIGHLIGHT */
::selection {
    background: transparent;
    color: grey;
}

::-moz-selection {
    background: transparent;
    color: grey;
}



/* CURSOR */
html, body, * {
  cursor: url("https://assets.maskednet.org/images/cursor.svg") 12 12, auto !important;
}



/* BACKGROUND */
body {
    background-color: #000000;
    overflow: hidden;
}

#particles-js { 
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



/* NAVIGATION */
header { 
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 16px 8%;
    transition: all .50s ease-in-out;
}

.navbar__logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-family: "Orbitron";
    font-size: 1.5rem;
}

.navbar {
    display: flex;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-family: "Poiret One";
    font-size: 1.5rem;
    padding: 5px 0;
    margin: 0px 10px;
    transition: all .30s ease-in-out;
}

.navbar a:hover {
    color: grey;
    font-size: 1.7rem;
}