@font-face {
    font-family: 'Kento-Regular';
    src: url('assets/fonts/kento-regular/webfonts/kento-regular.woff2') format('woff2'),
    url('assets/fonts/kento-regular/webfonts/kento-regular.woff') format('woff'),
    url('assets/fonts/kento-regular/webfonts/kento-regular.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jeko-Regular';
    src: url('assets/fonts/jeko/tis-regular-webfont.woff2') format('woff2'),
    url('assets/fonts/jeko/tis-regular-webfont.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

body, html {
    font-family: 'Jeko-Regular', sans-serif;
    padding: 0px;
    margin: 0px;
    background: #791a18;
    color: white;
    line-height: 1.5;
    font-size: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.logo {
    position: fixed;
    top: 48px;
    left: 42px;
    width: 100px;
}

.adresse {
    position: fixed;
    bottom: 48px;
    left: 48px;
}

strong {
    font-family: 'Kento-Regular', sans-serif;
    letter-spacing: 1px;
    font-weight: normal;
}

a {
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    body, html {
        font-size: 18px;
        line-height: 1.45;
    }

    .logo {
        top: 24px;
        left: 16px;
        width: 100px;
    }

    .adresse {
        bottom: 24px;
        left: 24px;
    }

    strong {
        letter-spacing: 0.5px;
    }
}