:root {
    scrollbar-color: #777 #333;
}
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background: #212121;
    color: #e7e7e7;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    background: rgba(33, 33, 33, 0.9);
    backdrop-filter: blur(3px);
    z-index: 100;
    > .sitename {
        display: flex;
        > .title {
            color: unset;
            text-decoration: unset;
            display: flex;
        }
    }
}
.button {
    padding: 5px 15px;
    font-size: 14px;
    border: none;
    background: #006bef;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    &:hover {
        background: #0056b3;
    }
}
.heading {
    min-height: 100svh;
    padding: 0 7svw;
    display: flex;
    position: relative;
    > .content {
        margin: auto 0;
        > .title {
            all: unset;
            font-size: 24px;
        }
        > .content {
            margin-top: 5px;
            font-size: 14px;
        }
        > .buttons {
            margin-top: 10px;
            display: flex;
            gap: 5px;
        }
    }
}
.section {
    padding: 70px 7svw;
    > h2 {
        all: unset;
        font-size: 20px;
    }
    > .content {
        margin-top: 5px;
        font-size: 14px;
    }
    > .buttons {
        margin-top: 10px;
        display: flex;
        gap: 5px;
    }
}
a.link {
    color: #9cf;
}
footer {
    margin-top: auto;
    background: #1a1a1a;
    color: #aaa;
    > .text {
        padding: 12.5px 20px;
        box-sizing: border-box;
        font-size: 14px;
        > a {
            color: #aaa !important;
            text-decoration: unset;
        }
    }
}
