@import "theme.css";

body {
    min-height: 100vh;
    min-width: 100vw;

    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;

    color: var(--text);
    background-color: var(--background);

    font-family: "Inter", sans-serif;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary);
    padding: 0.25rem 1rem;
    text-align: center;
}
header h1 a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

main {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    padding: 20px;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;

    background-color: var(--primary);
}
