@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Share+Tech+Mono&display=swap");

.app {
    min-height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
}

/* this is a comment */

h1 {
    color: white;

    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 1000;
    font-style: normal;
}

h2 {
    color: white;

    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h3 {
    color: white;

    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h5 {
    color: rgba(255, 255, 255, 0.5);

    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

p {
    color: white;

    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

button {
    color: white;

    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

footer {
    padding: 55px, 55px;
}

nav {
    background-color: rgba(55, 55, 55, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 36px;
    border-radius: 10px;
    width: 650px;
}

.background {
    width: 100%;
    height: 100%;

    top: 0;
    left: 0;
    position: fixed;

    background: rgba(0, 0, 0, 1);
    --gap: 5em;
    --line: 2px;
    --color: rgba(255, 255, 255, 0.05);

    background-image:
        linear-gradient(
            -90deg,
            transparent calc(var(--gap) - var(--line)),
            var(--color) calc(var(--gap) - var(--line) + 1px),
            var(--color) var(--gap)
        ),
        linear-gradient(
            0deg,
            transparent calc(var(--gap) - var(--line)),
            var(--color) calc(var(--gap) - var(--line) + 1px),
            var(--color) var(--gap)
        );
    background-size: var(--gap) var(--gap);
}
