@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(s/poppins/v20/pxiEyp8kv8JHgFVrFJA.ttf) format('truetype');
}

body {
    background-color: #111111;
    color: rgb(245, 245, 245);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;

    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.purp {

    background: #8E2DE2;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #4A00E0, #8E2DE2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
     /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    filter: drop-shadow(0 0 5px rgba(89, 0, 255, 0.575));
    
 


    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -mo-text-fill-color: transparent;

}

.version {
    color: gray;
    font-size: 75%;
}


* {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}
  
::-webkit-scrollbar-track {
    background: #5a5a5a; 
}
   
::-webkit-scrollbar-thumb {
    background: rgb(37, 37, 37); 
}
  
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: sticky;
    align-items: center;
    padding: 10px 10%;
    background-color: #0c0c0c;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.425));

}

.logo {
    margin-right: auto;
    font-size: 1.2rem;
}

li, a {
    text-decoration: none;
    color: #fff;
}

.navbar-links {
    list-style: none;
}

.navbar-links li{
    display: inline-block;
    padding: 0px 20px;
}

.navbar-links li a{
    transition: all 0.3s ease 0s;
}

.navbar-links li a:hover{
    color: #7F00FF;
}

.btn-container {
    padding: 0px 25px;
}

.navbar-btn {
    padding: 9px 25px;
    font: 500 14px 'Poppins';

    transition: all 0.3s ease 0s;

    color: #fff;
    background: #8E2DE2;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #4A00E0, #8E2DE2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    filter: drop-shadow(0 0 10px #7F00FF);

    border: none;
    border-radius: 10px;
}

.navbar-btn:hover {
    transform: translateY(-3px);
}

.tos {
    font-size: 1.2rem;
    padding: 160px;
}

.yo {
    color: #808080;
    transform: translateY(20px);
} 