@import "https://meyerweb.com/eric/tools/css/reset/reset.css";

h1, h2, h3, h4, h5, h6, p, span {
  padding: 0;
  margin: 0;
}
html {
  overflow: hidden;
}
html, body {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  padding: 0;
  margin: 0;
}
body {
  display: flex;
  background-color: rgb(37, 37, 37);
  background-image: url("./background.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  align-items: center;
  align-content: center;
  flex-flow: column;
  flex-direction: column;
  justify-content: center;
}
header {
  width: 100%;
}
header img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 33vh;
  margin: 0 auto;
}
main, footer {
  text-align: center;
}
main {
  padding: 1rem 0;
}
footer {
  padding-top: 2rem;
  font-size: 1.2em;
  flex-shrink: 3;
}
footer a {
  color: inherit;
  text-decoration: none;
}
h3, h4 {
  color: blue;
}
h3 {
  font-size: 4em;
  font-family: monospace;
  font-weight: bold;
  padding-bottom: .5rem;
}
h3 small {
  font-size: .5em;
  padding-left: .5rem;
}
h4 {
  font-size: 2em;
  font-weight: 600;
  letter-spacing: .05rem;
  word-spacing: .5rem;
}
h5 {
  display: inline-block;
  position: relative;
  color: white;
  font-size: 2em;
  font-style: italic;
  text-shadow: #464646 -1px -1px 3px;
  line-height: .95em;
  word-spacing: 1rem;
  margin-left: -1rem;
  margin-bottom: .3em;
}
h5::before, #motto h4::before {
  content: '«';
  padding-right: .5rem;
}
h5::after, #motto h4::after {
  content: '»';
  padding-left: .5rem;
}
h5 > div {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
}
.separator {
  display: block;
  height: 16px;
  position: relative;
  line-height: 16px;
  font-size: 1.25em;
  color: orange;
  text-shadow: #464646 0 0 2px;
  text-align: center;
}
.separator::before, .separator::after{
  content: '';
  display: block;
  width: calc(50% - 8px - .3em);
  height: 1px;
  background-color: white;
  position: absolute;
  top: 50%;
}
.separator::before {
  width: 48%;
  transform: translate(calc(2% - .3em))
}
.separator::after {
  left: 50%;
  width: 48%;
  transform: translate(calc(2% + .3em))
}
p {
  padding: .25rem 0;
  font-size: 1.5em;
}
.white {
  color: white;
}
.address {
  color: white;
}
.email {
  color: black;
  text-transform: initial;
}
.piva {
  color: white;
}
#mobile {
  display: none;
}

@media only screen and (hover: none) and (pointer: coarse){
  /* Reset */
  html {
    overflow: visible;
  }
  body {
    display: initial;
    background-image: none;
    background-color: initial;
    max-height: initial;
  }
  header, main, footer {
    padding: initial;
    margin: initial;
    text-align: initial;
  }
  h1, h2, h3, h4, h5, h6, p, small {
    font-size: initial;
    color: initial;
    text-shadow: initial;
    word-spacing: initial;
    letter-spacing: initial;
  }
  #mobile {
    display: initial;
  }
}