/* Reset y variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/graphik/Graphik-Light.woff2') format('woff2');
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/graphik/Graphik-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/graphik/Graphik-Medium.woff2') format('woff2');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

:root {
    --color-black: #000000;
    --color-blue: #14133b;
    --color-white: #ffffff;
    --color-gray: #b8b8b8;
    --font-graphik: 'Graphik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-graphik-light: 'Graphik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-jost: 'Jost', sans-serif;
    --site-frame-size: 15px;
}

body {
    font-family: var(--font-graphik);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--color-white);
    padding: var(--site-frame-size);
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

.site-main {
    min-height: 100vh;
}

@media (max-width: 768px) {
    :root {
        --site-frame-size: 12px;
    }
}
