@import url('https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap');

body {
    position: relative;
    background-color: #1b1b1f;
    font-family: "Special Gothic Expanded One", sans-serif;
    color: white;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-color: #1b1b1f;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotate(-3deg);
    z-index: -1;
}

a {
    color: #61dafb;
    text-decoration: none;

    &:hover {
        text-decoration: underline;
    }
}

h1 {
    color: #ffffff;
    font-size: 3rem;
}

.container {
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 15px;

    .links {
        display: flex;
        flex-direction: column;

        gap: 15px;

        a {
            display: flex;
            gap: 4px;
        }
    }
}

#nixpkgs-pr-tracker {
    form {
        display: flex;
        gap: 8px;

        input {
            padding: 4px;
            border-radius: 4px;
            border: none;

            font-family: "Special Gothic Expanded One", sans-serif;
        }

        button {
            padding: 4px 8px;
            border-radius: 4px;
            border: none;
            background-color: white;
            color: #1b1b1f;
            cursor: pointer;

            font-family: "Special Gothic Expanded One", sans-serif;

            &:hover {
                opacity: 0.8;
            }
        }
    }
}