@font-face {
    font-family: "Fira";

    font-weight: normal;

    src: url("fira.ttf") format("ttf");;
}

body {
    padding: 10px;

    background-color: #000;
    color: #fff;

    font-family: "Fira", "Fira Code", "JetBrains Mono", "Consolas", "monospaced", "sans-serif";
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.vantajs-canvas {
    position: fixed;

    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;

    background-color: #000;

    filter: blur(50px);

    z-index: -1;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;
    width: 100%;
}

.content {
    max-width: 80%;
    margin: auto;

    text-align: left;
}

a {
    color: #fff;
}

a:hover {
    color: #fff;
}

hr {
    border-color: rgba(255, 255, 255, 0.2);
}