:root {
  --x: 16;
}

/*
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Automation';
  src: url('/assets/fonts/IDAutomationHC39M.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
*/

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  font-size: 100%; /* = 16px di default nei browser */
}

body {
  min-height: 100vh; /*min-height: 100dvh;*/
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-family: sans-serif;
  line-height: 1.5;
  color: #111;
  background: grey;
}

#header {
  color: #000;
  background: #fff;
  padding: 3rem;
}

#container {
  padding: 2rem;     /* 32px */
}

/*classic*/
#container {
  margin: 0 auto;
}

/*modern*/
#container {
  margin-block: 0;
  margin-inline: auto;
}

h1 {
  font-size: 2rem;   /* 32px */
}

p {
  /*
  margin-block: 0 1em;
  margin-inline: auto;
  */
  margin: 0 auto 1em auto;
  padding: 1rem;
  line-height: 1.6;
  font-size: 1rem;   /* 16px */
  max-width: 70ch;
  text-wrap: pretty;
  hyphens: auto;
}

/*#container {
  color: #000;
  background: #fff;
  padding: 30px;
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
}*/

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
}

th {
  font-weight: 600;
  background: #f5f5f5;
}

tbody tr {
  border-bottom: 1px solid #e5e5e5;
}

/*tbody tr:hover {
  background: #f9f9f9;
}*/

/*.table-wrapper {
  overflow-x: auto;
}*/

#footer {
  color: #fff;
  background: #000;
  padding: 3rem;
}