html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #0d1117;
}

.page {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

a, .btn-link {
    color: #58a6ff;
}

.btn-primary {
    color: #fff;
    background-color: #238636;
    border-color: #2ea043;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
}