{css}
@font-face {
    font-family: 'Ali';
    src: url('./fonts/Roboto-Regular.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ali', system-ui;
    overflow: hidden;
}

body {
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum';
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    padding: 0;
    border-bottom: 1px solid #E9E9E9;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.nav > a


