@import url("https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&display=swap");
body,
html {
  background-color: #121212;
  font-family: Arapey;
  color: white;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  overflow-x: hidden;
}

#wrapper {
  height: 100%;
}
#wrapper .header {
  margin-top: 2em;
}

.logo_img {
  display: block;
  margin: 0 auto;
}

.message {
  display: block;
  margin: 0 auto;
  width: auto;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 2em;
  font-size: 1.5em;
  font-style: italic;
}

#choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 600px;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  margin-top: 2em;
  align-content: center;
  justify-items: center;
  color: rgba(255, 255, 255, 0.9);
}
#choices a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  color: white;
}
#choices a .choice {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-size: 3em;
  overflow: hidden;
  transition: all 0.25s linear;
}
#choices a .choice span.content {
  position: absolute;
  z-index: 2;
  transition: transform 0.1s ease-in;
}
#choices a .choice img {
  z-index: 0;
  display: block;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  transition: all 0.1s ease;
}
#choices a .choice:hover {
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.05);
  cursor: pointer;
}
#choices a .choice:hover span.content {
  transform: translate3d(0, -5px, 0);
}
#choices a .choice:hover img {
  transform: scale(1.02);
  opacity: 0.3;
}

@media screen and (max-width: 600px) {
  .message {
    font-size: 1.2em;
  }
  #choices {
    margin-top: 1em;
    display: grid;
    height: unset;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  #choices a {
    height: unset;
  }
  #choices a .choice {
    height: 200px;
    aspect-ratio: 2/1;
  }
}
.separator {
  width: 100px;
  height: 3px;
  margin: 1em auto;
  background-image: url("https://cdn.shopify.com/s/files/1/0603/9404/5637/t/6/assets/flag.italy.svg");
}
@media screen and (min-width: 600px) {
  .separator {
    margin: 2em auto;
  }
}
@media screen and (min-width: 800px) {
  .separator {
    margin: 3em auto;
  }
}
@media screen and (min-width: 1200px) {
  .separator {
    margin: 4em auto;
  }
}

.content-card {
  color: white;
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-areas: "image content";
  width: 600px;
  margin: 1em auto;
  background-color: white;
  color: #121212;
}
.content-card.inverted {
  grid-template-columns: 1fr 120px;
  grid-template-areas: "content image";
}
.content-card__image {
  grid-area: image;
  position: reative;
  overflow: hidden;
}
.content-card__image img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-card__content {
  grid-area: content;
  display: grid;
  grid-template-rows: 0.1fr 1fr;
  padding: 0em 1em;
}
.content-card__content_title {
  font-size: 2em;
  padding: 0.5em 0em;
}
.content-card a {
  color: #121212;
  font-weight: bolder;
}
.content-card a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 800px) {
  .content-card {
    grid-template-columns: 240px 1fr;
    width: calc(100vw - 100px);
    max-width: 1000px;
  }
  .content-card.inverted {
    grid-template-columns: 1fr 240px;
  }
  .content-card__content {
    padding: 3em;
  }
}
.trombines {
  max-width: 1200px;
  margin: 2em auto;
}
.trombines .title {
  color: white;
  font-size: 2em;
  text-align: center;
}
.trombines__pictures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
}

@media screen and (max-width: 700px) {
  .trombines__pictures {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
#footer {
  display: grid;
  grid-template-areas: "content" "copyright";
  grid-template-rows: 1fr auto;
  min-height: 120px;
  background-color: #1a1a1a;
  width: 100%;
}
#footer .content {
  grid-area: content;
  display: grid;
  align-content: center;
  padding: 0.3em;
  max-width: 400px;
  margin: 0 auto;
}
#footer .content .infos {
  display: grid;
  grid-template-areas: "ville tel";
  grid-template-columns: 0.8fr 1fr;
  width: 100%;
}
#footer .content .infos .ville {
  color: white !important;
  grid-area: ville;
  text-decoration: none;
}
#footer .content .infos .ville:hover {
  text-decoration: underline;
}
#footer .content .infos .telephone {
  grid-area: tel;
}
#footer .content .infos a.website {
  color: white !important;
  padding-left: 0.2em;
}
#footer .copyrights {
  grid-area: copyright;
  text-align: center;
  padding-bottom: 0.5em;
  font-size: 0.85em;
}/*# sourceMappingURL=styles.css.map */