/**
 * Copyright (c) 2024
 *
 * This file is part of pet-friendly.
 *
 * pet-friendly is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * any later version.
 *
 * pet-friendly is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Foobar.  If not, see <https://www.gnu.org/licenses/>.
 *
 * esinkutaykilic@gmail.com
 */

/*v1.0.0*/

@import url("https://rsms.me/inter/inter.css");

@import "reset.css";
@import "button.css";
@import "consent-banner.css";
@import "color.css";
@import "footer.css";
@import "layout.css";
@import "page.index.css";
@import "page.policy.css";
@import "shared.css";
@import "typography.css";


body {
    background: var(--color-background);
    font-family: 'Helvetica Neue', Inter, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 16px;
    font-optical-sizing: auto;
    font-feature-settings: 'liga' 1, 'calt' 1;
    color: var(--color-on-background);
}

button {
    cursor: pointer;
}

@supports (font-variation-settings: normal) {
    :root { font-family: InterVariable, sans-serif; }
}

@media only screen and (max-width: 799px) {
    body {
        font-size: 12px;
    }
}
