* {
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    background-color: #1A1A1B;
    color: #fff;
}

body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    grid-template-rows: 100px 1fr 100px;
}

h1 {
    margin-left: 2%;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.left-column,
.right-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}