:root { --container: 1200px; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1rem; }
.site-header, .site-footer { padding: 1rem 0; }
.menu { display: flex; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.entry-title { margin: .5rem 0 1rem; }

body{
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;

 
}


@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/SpaceGrotesk-Bold.woff2') format('woff2'),
        url('../fonts/SpaceGrotesk-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/SpaceGrotesk-Medium.woff2') format('woff2'),
        url('../fonts/SpaceGrotesk-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/SpaceGrotesk-SemiBold.woff2') format('woff2'),
        url('../fonts/SpaceGrotesk-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/SpaceGrotesk-Light.woff2') format('woff2'),
        url('../fonts/SpaceGrotesk-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/SpaceGrotesk-Regular.woff2') format('woff2'),
        url('../fonts/SpaceGrotesk-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Font weight classes */
.font-space-light {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
}

.font-space-regular {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400; /* normal */
}

.font-space-medium {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

.font-space-semibold {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.font-space-bold {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; /* or 'bold' */
}

.font-space {
    font-family: 'Space Grotesk', sans-serif;
}

