body{
    margin: 0;
    padding: 0;

    background-color: #05060a;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 50px 160px, #ddd, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 80px 120px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 110px 10px, #ccc, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 150px 50px, #fff, rgba(0,0,0,0));
    
    background-size: 200px 200px;
}

#acryllic{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px) saturate(150%);
    background: rgba(0, 0, 0, 0.05);
    z-index: -1;
    &::after {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        filter: url(#noise);
        opacity: 0.05;
        pointer-events: none;
    }
}

*{
    color: white;
    font-family: "Cascadia Code", monospace, sans-serif;
}

#topbar{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px;
    height: 38px;
}

#topbar *{
    margin: 5px;
}

#topbar .l{
    margin-left: auto;
}

a{
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    padding: 4px;
    margin: 5px;
    border: 1px solid #ffffff;
    border-radius: 3px;
    background: transparent;
    transition: all 0.25s;
}

a:hover{
    color: black;
    background: rgba(255, 255, 255, 1);
}

a:active{
    color: white;
    background: transparent;
}

#main{
    position: relative;
    text-align: center;
    left: 12.5vw;
    width: 75vw;
}

#title{
    font-size: 64px;
    margin-bottom: 5px;
}