/*
Theme Name: Alpina Blog
Theme URI: https://example.com
Author: Alpina Digital
Version: 1.0.0
Text Domain: alpina-blog
*/

@font-face {
  font-family: 'Gilroy';
  src:
    url('/wp-content/fonts/gilroy/gilroy-regular.woff2') format('woff2'),
    url('/wp-content/fonts/gilroy/gilroy-regular.woff') format('woff'),
    url('/wp-content/fonts/gilroy/gilroy-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src:
    url('/wp-content/fonts/gilroy/gilroy-medium.woff') format('woff'),
    url('/wp-content/fonts/gilroy/gilroy-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src:
    url('/wp-content/fonts/gilroy/gilroy-bold.woff') format('woff'),
    url('/wp-content/fonts/gilroy/gilroy-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
    --container: 1120px;
    --colorBlack: #000000;
    --colorHeader: #2A2B2D;
    --colorMainBG: #F7F7F7;
    --colorGray: #F7F7F7;
    --fontPrimary: 'Gilroy', sans-serif;
}

* {
    box-sizing: border-box;
    font-family: var(--fontPrimary);
}


html {
  font-family: var(--fontPrimary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
}

body {
  background: var(--colorMainBG);
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fontPrimary);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 0.6em;
  color: var(--colorHeader);
}

p {
  margin: 0 0 1em;
  font-weight: 400;
}
