/* FONTS - START */
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap");

@font-face {
    font-family: "Satoshi";
    src: url("./fonts/Satoshi-Regular.woff2") format("woff2"),
        url("./fonts/Satoshi-Regular.woff") format("woff"),
        url("./fonts/Satoshi-Regular.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "Satoshi";
    src: url("./fonts/Satoshi-Medium.woff2") format("woff2"),
        url("./fonts/Satoshi-Medium.woff") format("woff"),
        url("./fonts/Satoshi-Medium.ttf") format("truetype");
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "Satoshi";
    src: url("./fonts/Satoshi-Light.woff") format("woff"),
        url("./fonts/Satoshi-Light.ttf") format("truetype");
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

/* FONTS - END */

/* INIT - START */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* Tailwind obsługuje kolory tła w klasach HTML, 
     ale zostawiamy font-family jako fallback */
    font-family: "Satoshi", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CUSTOM UTILITIES */

/* Klasa dla specyficznego fontu "Cookies" */
.font-instrument {
    font-family: "Instrument Serif", serif;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}