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

body {
  font-family: "Josefin Sans", sans-serif;
  width: 100vw;
  height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
  background-color: whitesmoke;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin-bottom: 0.8em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Italianno", serif;
  font-weight: 100;
  line-height: 1em;
}

h1 {
  font-size: 60px;
  margin-top: 20px;
}

h2 {
  font-size: 35px;
  margin-bottom: 8px;
}

h3 {
  font-size: 28px;
  margin-top: 24px;
  margin-bottom: 8px;
}

h4 {
  font-size: 24px;
  margin-bottom: 3px;
}
h4 + * {
  font-size: 12px;
}

main {
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 50px;
  background-color: white;
}
main header {
  height: 50px;
}
main header nav {
  position: fixed;
  width: 1000px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  background-color: #a20a0a;
  color: white;
  z-index: 100;
}
main header nav ul {
  list-style: none;
}
main header nav ul li {
  display: inline-block;
  margin-right: 28px;
}
main header nav ul li:hover {
  text-decoration: underline;
  background-color: #c13030;
}
main header + section {
  position: relative;
  height: 400px;
  background-image: url(materiale/xmas-img.jpg);
  background-size: cover;
  background-position: center -140px;
}
main header + section div {
  position: absolute;
  bottom: 60px;
  padding: 0 40px;
  padding-bottom: 10px;
  width: 100%;
  background-color: rgba(51, 93, 45, 0.8);
  color: white;
}
main header + section + article, main aside + section + article {
  background-color: #335d2d;
  color: white;
  padding: 0 40px;
  padding-top: 26px;
  padding-bottom: 24px;
}
main section + article + section, main section + section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  min-height: 148px;
  border-bottom: 1px solid #a20a0a;
}
main section + article + section div, main section + section div {
  width: 33%;
  height: 120px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(svg/nisse-demon.svg);
}
main section + article + section a, main section + section a {
  display: block;
  width: 80px;
  height: 80px;
  background-position: center center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
}
main section + article + section a:nth-child(1), main section + section a:nth-child(1) {
  background-image: url(svg/gave-g.svg);
}
main section + article + section a:nth-child(1):hover, main section + section a:nth-child(1):hover {
  background-image: url(svg/gave-r.svg);
}
main section + article + section a:nth-child(2), main section + section a:nth-child(2) {
  background-image: url(svg/gran-g.svg);
}
main section + article + section a:nth-child(2):hover, main section + section a:nth-child(2):hover {
  background-image: url(svg/gran-r.svg);
}
main section + article + section a:nth-child(3), main section + section a:nth-child(3) {
  background-image: url(svg/fnug-g.svg);
}
main section + article + section a:nth-child(3):hover, main section + section a:nth-child(3):hover {
  background-image: url(svg/fnug-r.svg);
}
main section + article + section + article, main section + section + article {
  margin-bottom: 22px;
  padding: 0 40px;
}
main section + article + section + article h3, main section + section + article h3 {
  color: #a20a0a;
}
main video {
  width: 100%;
  border-top: 3px #a20a0a solid;
  border-bottom: 3px #a20a0a solid;
}
main footer {
  margin: 12px 0;
  padding: 0 40px;
  color: #a20a0a;
}

aside {
  display: block;
  width: 26%;
  height: 360px;
  background-color: rgba(51, 93, 45, 0.8);
  position: relative;
  float: right;
  z-index: 50;
  margin: 1.2em;
  padding: 18px;
  color: white;
}
aside ul {
  margin-left: 10px;
}
aside ul li {
  margin-bottom: 3px;
}

aside + section {
  position: relative;
  height: 400px;
  background-image: url(materiale/pejs.jpg);
  background-size: cover;
  background-position: center center;
}/*# sourceMappingURL=style.css.map */