/* Import Open Runde font from GitHub releases */
@font-face {
    font-family: 'Open Runde';
    font-style: normal;
    font-weight: 400;
    src: url('https://github.com/lauridskern/open-runde/releases/download/v1.0.1/OpenRunde-Regular.woff2') format('woff2'),
         url('https://github.com/lauridskern/open-runde/releases/download/v1.0.1/OpenRunde-Regular.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Open Runde';
    font-style: normal;
    font-weight: 500;
    src: url('https://github.com/lauridskern/open-runde/releases/download/v1.0.1/OpenRunde-Medium.woff2') format('woff2'),
         url('https://github.com/lauridskern/open-runde/releases/download/v1.0.1/OpenRunde-Medium.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Open Runde';
    font-style: normal;
    font-weight: 600;
    src: url('https://github.com/lauridskern/open-runde/releases/download/v1.0.1/OpenRunde-Semibold.woff2') format('woff2'),
         url('https://github.com/lauridskern/open-runde/releases/download/v1.0.1/OpenRunde-Semibold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Open Runde';
    font-style: normal;
    font-weight: 700;
    src: url('https://github.com/lauridskern/open-runde/releases/download/v1.0.1/OpenRunde-Bold.woff2') format('woff2'),
         url('https://github.com/lauridskern/open-runde/releases/download/v1.0.1/OpenRunde-Bold.woff') format('woff');
    font-display: swap;
}

/* Set Open Runde as the default font for the entire document */
* {
    font-family: 'Open Runde', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: 'Open Runde', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 