/**
 * Theme Name:    Heisenberg
 * Theme URI:     https://github.com/matteoFeduzi/heisenberg
 * Description:   Un tema semplice e leggero creato da Matteo Feduzi per i siti di Alessandro Termenini.
 * Author:        Matteo Feduzi
 * Author URI:    https://matteofeduzi.it
 * Version:       1.3.3.19
 * Text Domain:   heisenberg
 * Domain Path:   /languages
 * GitHub Theme URI: matteoFeduzi/heisenberg
 * GitHub Theme URI: https://github.com/matteoFeduzi/heisenberg
*/

:root {
  --hsbg-border-radius: 5px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html,
body {
  background: var(--hsbg-neutral-color-10);
  color: var(--hsbg-neutral-color-2);
  font-size: var(--hsbg-font-size-p);
  line-height: 1.5;
  font-weight: 400;
  word-wrap: break-word;
  margin: 0px;
}

h1 {
  font-size: var(--hsbg-font-size-h1);
}

h2 {
  font-size: var(--hsbg-font-size-h2);
}

h3 {
  font-size: var(--hsbg-font-size-h3);
}

h4 {
  font-size: var(--hsbg-font-size-h4);
}

h5 {
  font-size: var(--hsbg-font-size-h5);
}

h6 {
  font-size: var(--hsbg-font-size-h6);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--hsbg-neutral-color-1);
  line-height: 1.3;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/*-----------------------------------------------------
 * MOBILE
------------------------------------------------------*/
@media(max-width:767px) {
  h1 {
    font-size: var(--hsbg-font-size-h4);
  }

  h2 {
    font-size: var(--hsbg-font-size-h5);
  }

  h3 {
    font-size: var(--hsbg-font-size-h6);
  }
}