@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

* {
    font-family: "JetBrains Mono";
    color: white;
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
}

h1 {
    font-size: 3rem;
}

p {
    font-size: 1rem;
}

.w-fill {
    width: 100%;
}

.h-fill{
    height: 100%;
}

.h-max {
    height: 100vh;
}

.jc-center {
    justify-content: center;
}

.ai-center {
    align-items: center;
}

.d-flex {
    display: flex;
}

.fd-column {
    flex-direction: column;
}

.fd-row {
    flex-direction: row;
}

.g-normal {
    gap: 1rem;
}
