@font-face {
    font-family: 'JetBrainsMono Nerd Font';
    src: url('fonts/JetBrainsMonoNerdFont-Thin.ttf') format('truetype');
    font-weight: 100;
}

/* For mobile support */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .section {
        width: 100%;
        align-items: center;
    }

    button {
        width: 80%;
    }

    .wip, h1
    {
        font-size: large;
    }
}

.wip
{
    color: #f00;
}

body
{
    background-color: #0f0f0f;
    color: #BFBFBF;
    font-family: 'JetBrainsMono Nerd Font', monospace;
}

h1
{
    display         : flex;
    justify-content : center;
    align-items     : center;
/*
    border-top      : 1px solid #3f3f3f;
    border-bottom   : 1px solid #3f3f3f;
    border-radius   : 5px;
*/
}

hr
{
    border-color: #0f0f0f;
    width: 25%;
}

.container
{
    display: flex;
    align-items: flex-start;
}

.section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 16px;
}

button {
    width: 200px;
    padding: 8px;
    background: #1e1e1e;
    color: #e0e0e0;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    font-family: inherit;
    font-weight: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
  transition: all 0.25s;
  font-weight: normal;
  color: #ffffff;
  background: #1e1e1e;
  border-radius: 6px;
  border: 1px solid #868686;
  min-width: 140px;
  min-height: 44px;
}

button:hover {
    background: #2e2e2e;
}