/* Import Noto Sans variable font */
@font-face {
    font-family: 'Noto Sans';
    src: url('nt.ttf') format('truetype');
    font-weight: 100 900; /* supports variable font weights */
    font-style: normal;
}

/* Apply the font to the whole page */
body {
    font-family: 'Noto Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Center text class */
.center-text {
    text-align: center;
}
