body {
  margin: 0;
  background-color: #e4e4e4;
}
body h1, body h6, body p {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 1px;
}
body h1, body h6 {
  font-weight: 700;
}
body p {
  font-weight: 400;
}

.gallery {
  display: grid;
  grid-gap: 10px;
  padding: 10px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 999px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 690px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
}
.gallery .gallery-item:hover a img {
  filter: brightness(1.2);
  transform: scale(1.1);
}
.gallery .gallery-item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(1);
  transform: scale(1);
  transition: all 300ms;
}

header {
  position: relative;
  height: 80vh;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.2705882353);
}
header h1, header h6 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}
header h1 {
  font-size: clamp(40px, 4vw, 60px);
  margin-top: 20%;
}
header h6 {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 200;
  font-style: italic;
}

.titolo {
  padding: 10px;
  margin: 30px 0 30px 0;
}
.titolo h6, .titolo p {
  margin-top: 0;
  margin-bottom: 0;
  color: #404040;
  text-align: center;
}
.titolo h6 {
  font-size: 20px;
  font-weight: 500;
}
.titolo p {
  font-size: 10px;
}

footer {
  background-color: #404040;
  color: #fff;
  padding: 20px 10px;
  margin-top: 60px;
}
footer p {
  margin: 0;
  font-size: 10px;
  text-align: center;
}

#main_video {
  padding: 10px;
  margin-top: 60px;
}
#main_video video {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
  box-shadow: 0px -15px 30px rgba(5, 19, 74, 0.2901960784);
}
#main_video video::-webkit-media-controls-download-button, #main_video video::-webkit-media-controls-enableremotesplaybackdownload-button {
  display: none !important;
}/*# sourceMappingURL=style.css.map */