@font-face {
    font-family: "Sudo";
    src: url("/fonts/SudoVariable.woff2") format("woff2");
    font-weight: 100 700;
    font-stretch: 75% 100%;
    font-style: normal;
}
:root {
    --bg-color: #2d2f42;
    --text-color: #e0e0e6;
    --link-color: #ffffff;
    --secondary-text: #a4adc0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "Sudo", "JetBrains Mono", monospace;
    font-size: 1.2rem;
    margin: 0;
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 800px;
    width: 100%;
}

h1 {
    font-weight: bold;
}

h2 {
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--link-color);
    text-decoration: underline;
}

a:hover {
    opacity: 0.8;
}

.links {
    display: flex;
    gap: 10px;
    height: fit-content;
}

footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-text);
    color: var(--secondary-text);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 650px) {
    body {
        padding: 1.5rem 1rem;
    }
}
