h1{
    font-size: 3.75em;
}
h2{
    font-size: 3.125em;
    font-weight: 400;
    text-align: center;
}
h3{
    font-size: 1.5em;
}
h4{
    font-size: 1.25em;
}

a{
    font-size: 1.125em;
}
p{
    font-size: 1em;
}

a,h1,h2,h3,h4,h5,h6{
    color: var(--white);
}

html{
    scroll-behavior: smooth;
}
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}

::-webkit-scrollbar-track
{
    border-radius: 12px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #06091D;
}

::-webkit-scrollbar
{
    border-radius: 12px;
	width: 10px;
	background-color: #06091D;
}

::-webkit-scrollbar-thumb
{
    border-radius: 12px;
	background-color: #271c4d;	
	background-image: -webkit-linear-gradient(131deg, #7D02FF 0%, #3503FF 100%);
}