*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}


:root{
    color-scheme: dark;
}

::selection {
    background-color: rgba(58, 48, 114, 0.25);
    color:#C0C0C0
}

@font-face {
    font-family: "Sarasa";
    src: url("../fonts/SarasaUiSC-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body{
    font-family:"Sarasa";
    background:black;
    color:white;
    overflow-x:hidden;
}

.background{
    position:fixed;
    inset:0;

    background-image:
        url("../img/bg.webp");

    background-size:cover;
    background-position:center;

    transform:scale(1.05);

    z-index:-2;
}

.overlay{
    position:fixed;
    inset:0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.4),
            rgba(0,0,0,0.8)
        );

    z-index:-1;
}

.navbar{
    position:fixed;
    top:0;

    width:100%;
    height:72px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 60px;

    backdrop-filter:blur(12px);

    background:
        rgba(10,10,30,0.35);

    border-bottom:
        1px solid rgba(255,255,255,0.08);

    z-index:100;
}

.logo{
    font-size:24px;
    letter-spacing:4px;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    color:white;
    text-decoration:none;

    opacity:0.75;

    transition:0.3s;
}

nav a:hover{
    opacity:1;
    color:#FFD700;
}