::-webkit-scrollbar{
    background-color: transparent;
    width: 5px;
}
::-webkit-scrollbar-thumb{
    width: 5px;
    background-color: #f6f6f63a;
    border-radius: 10px;
    transition: all 150ms;
}
::-webkit-scrollbar-thumb:hover{
    background-color: #f6f6f6;
}
:root{
    --background-color: #100f0d;
    --fire-color: #bb44f0;
    --spark-color: #c59eda;
    --trainee-color: #9b84a8;
    --zero-point-color: #fefefe;
    --text-accent-color: #bb44f0;
    --text-light-color: #ffffff;
    --text-dark-color: #141414;

    font-size: 16px;
    scroll-behavior: smooth;
}
body{
    margin: 0;
    overflow-x: hidden;
    background-color: var(--text-dark-color);
    font-family: Helvetica;
    color: white;
}
.fullsize{
    height: 100svh;
    width: 100svw;
    margin: 0;
    padding: 0;
}
.center_content{
    display: grid;
    align-content: center;
    text-align: center;
}
h1{
    font-size: 36px;
}
h2{
    font-size: 24px;
}
sub{
    font-size: 28px;
    color: #fefefe;
}
p{
    text-align: justify;
}
a{
    text-decoration: none;
    color: white;
    transition: all 150ms;
    text-wrap: nowrap;
}
a:hover{
    opacity: 0.5;
}
a:active{
    color: var(--trainee-color);
}
a.text_link{
    font-size: 1rem;
    text-decoration: underline;
}
menu{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.inline{
    list-style-type: none;
    display: flex;
    align-items: center;

    li:not(:first-child){
        margin-inline: 1rem;
    }
    li:first-child{
        margin-right: 1rem;
    }
    li:last-child{
        margin-left: 1rem;
    }
}
.particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    will-change: transform, opacity;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.halo {
    z-index: -1;
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}
#cometCanvas {
    position: fixed;
    top: 0;
    left: 0;
    height: 100svh;
    width: 100svw;
    pointer-events: none;
    z-index: 9999;
}
.button_cta{
    padding: 0.5rem 1.5rem;
    background-color: var(--text-accent-color);
    border-radius: 16px;
    color: white;
    transform: scale(1);
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
}
.button_cta:hover{
    opacity: 0.7;
    animation: pulse_button 750ms ease-in-out infinite alternate;
}
.button_cta:active{
    background-color: white;
    color: black;
}

