@charset "UTF-8";
/*
Theme Name: MakeNick
Author: Mykola Yashchuk
Description: Web developer
Version: 1.0.0
Requires PHP: 8+ 
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: makenick
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

*/

/* FONTS */
/* 
@font-face {
    font-family: ProximaNova;
    font-display: swap;
    src: url(./fonts/ProximaNova-Bold.woff2) format("woff2"),
        url(./fonts/ProximaNova-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
} */

/* Змінні */
/* :root {} */

/* CSS Reset */

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
* {
    margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    font-family: var(--font-family);
    line-height: 1.1;
    background-color: #FDFCF5;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
    font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
    isolation: isolate;
}

