@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "JetBrains Mono", monospace;
    background: #1e1e2e; /* Catppuccin Latte base */
    color: #a6e3a1; /* Catppuccin Latte blue */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}

.logo {
    width: 20em;
}

.banner {
    width: 20em;
}

h1 {
    font-size: 4em;
}

h2 {
    font-style: italic;
}

footer {
    position: fixed;
    bottom: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.75;
}
