body {
  margin: 0;
  padding: 0;
  background-color: #032015;
  color: white;
  display: flex;
  padding: 5vw;
  text-align: left;
  font-size: 20px; /* aumenta la dimensione base del testo */
  line-height: 1.4;
}

#header {
  display: none; /*Non posso controllo lo style senza pushare, quindi per ora lo lascio invisibile (tanto non mi piaceva quel tasto) poi nel caso lo aggiungiamo in futuro*/
  background-color: #1a1a1a;
  align-items: end;
  padding-right: 5vw;
}
#header > .fork {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: transparent;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FFF;
}

#title {
  text-align: center;
  margin: auto;
}
#title > h1 {
  background-color: transparent;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 56px;
  line-height: 1.6;
  color: #FFF;
}
#title > span {
  display: none; /*Per non mostrare i credits in alto*/
}

.wrapper {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.wrapper > ul > li::marker {
  display: none;
  color: transparent;
}
.wrapper > section > ul > li::marker {
  display: none;
}
.wrapper > section > ul > li > ul > li::marker {
  display: none;
}
.wrapper > section > ul > li > ul > li > a {
  text-decoration: none;
  color: #525252;
  font-size: 28px;
  line-height: 36px;
  display: block;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
}
.wrapper > section > ul > li > ul > li > a:hover {
  background-color: #333;
  color: #fff;
}
.wrapper > section > ul > li > a {
  text-decoration: none;
  color: #525252;
  font-size: 24px;
  line-height: 32px;
  display: block;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
}
.wrapper > section > ul > li > a:hover {
  background-color: #333;
  color: #fff;
}

@media (min-width: 1024px) {
  body {
    padding-left: 10vw;
    padding-right: 10vw;
  }
  .wrapper {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}/*# sourceMappingURL=style.css.map */