@font-face {
  font-family: "Rhetorik";
  src: url("Rhetorik.woff2") format("woff2");
}

@font-face {
  font-family: "Italic";
  src: url("Italic.woff2") format("woff2");
}

.italic {
  font-family: Italic;
  letter-spacing: 0.1rem;
}

.testo_grande {
  font-family: Rhetorik;
  font-size: 10rem;
}

.testo_medio {
  font-family: Rhetorik;
  font-size: 3.5rem;
}

.testo_piccolo {
  font-family: Rhetorik;
  font-size: 2rem;
  line-height: 2.5rem;
  text-decoration: none;
}




.animazione_intro {
    z-index: 10;
    position: fixed;
    background-color: rgba(255,255,255,0.8);
  	background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    transition: 1s;
    margin-top: 0vh;
}

.ruota {
  position: relative;
  width: 100%;
  height: 100%;
  animation-name: logo;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.logo {
  position: absolute;
  width: 50%;
  height: auto;
  transform: translate(-50%,-50%);
  left: 50%;
  top: 50%;
}

@keyframes logo {
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(-360deg);
  }
}










.descrizione {
  text-align: center;
  padding-top: 1rem;
  padding-right: 20vw;
  padding-left: 20vw;
  color: rgb(60, 170, 50);
}










.vernissage {
  text-align: center;
  position: relative;
  width: 40vw;
  margin-top: 2rem;
  background-color: rgb(60, 170, 50);
  color: black;
  padding: 1rem;
  padding-bottom: 1rem;
  border-radius: 2rem;
  animation-name: vernissage;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  left: 30vw;
}

@keyframes vernissage {
  0%{
    transform: rotate(5deg) translate(0%,0%);
  }
  25%{
    transform: rotate(-5deg) translate(0%,0%);
  }
  50%{
    transform: rotate(-5deg) translate(0%,0%);
  }
  75%{
    transform: rotate(5deg) translate(0%,0%);
  }
  100%{
    transform: rotate(5deg) translate(0%,0%);
  }
}















.menu1 {
  left: 1rem;
  position: absolute;
  bottom: 37vh;
  animation-name: menu1;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  color: rgb(60, 170, 50);
  border: solid black 2px;
  border-radius: 2rem;
  padding: 1rem;
}

.menu1:hover {
  color: black;
  cursor: pointer;
}

@keyframes menu1 {
  0%{
    transform: rotate(15deg);
    letter-spacing: -0.1rem;
  }
  25%{
    transform: rotate(0deg);
    letter-spacing: -0.1rem;
  }
  50%{
    transform: rotate(0deg);
    letter-spacing: 2rem;
  }
  75%{
    transform: rotate(15deg);
    letter-spacing: 2rem;
  }
  100%{
    transform: rotate(15deg);
    letter-spacing: -0.1rem;
  }
}







.menu2 {
  right: 1rem;
  position: absolute;
  bottom: 27vh;
  animation-name: menu2;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  color: rgb(60, 170, 50);
}
.menu2:hover {
  color: black;
  cursor: pointer;
}

@keyframes menu2 {
  0%{
    transform: rotate(0deg);
    letter-spacing: 2rem;
  }
  25%{
    transform: rotate(-10deg);
    letter-spacing: 2rem;
  }
  50%{
    transform: rotate(-10deg);
    letter-spacing: -0.1rem;
  }
  75%{
    transform: rotate(0deg);
    letter-spacing: -0.1rem;
  }
  100%{
    transform: rotate(0deg);
    letter-spacing: 2rem;
  }
}







.menu3 {
  position: absolute;
  bottom: 1rem;
  text-align: center;
  width: 100vw;
  position: absolute;
  animation-name: menu3;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  color: rgb(60, 170, 50);
}
.menu3:hover {
  color: black;
  cursor: pointer;
}

@keyframes menu3 {
  0%{
    letter-spacing: -0.1rem;
  }
  25%{
    letter-spacing: -0.1rem;
  }
  50%{
    letter-spacing: 3rem;
  }
  75%{
    letter-spacing: 3rem;
  }
  100%{
    letter-spacing: -0.1rem;
  }
}












.lingua {
  position: absolute;
  text-align: right;
  padding-right: 1rem;
  color: rgb(60, 170, 50);
  bottom: 2rem;
  right: 0;
  width: 25vw;
}

.lingua:hover {
  color: black;
  cursor: pointer;
}

.info {
  text-align: right;
  padding-right: 1rem;
  position: relative;
  color: rgb(60, 170, 50);
  animation-name: info;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.info:hover {
  color: black;
  cursor: pointer;
}

@keyframes info {
  0%{
    letter-spacing: 1rem;
  }
  25%{
    letter-spacing: 1rem;
  }
  50%{
    letter-spacing: 0rem;
  }
  75%{
    letter-spacing: 0rem;
  }
  100%{
    letter-spacing: 1rem;
  }
}










.chiudi {
  z-index: 1;
  position: sticky;
  left: 1rem;
  color: rgb(60, 170, 50);
  top: 1rem;
  margin-bottom: 4rem;
}
.chiudi:hover {
  color: black;
  cursor: pointer;
}

#artisti {
  position: fixed;
  overflow: scroll;
  padding-left: 2rem;
  padding-right: 2rem;
  z-index: 1;
  top: 0;
  height: 100vh;
  width: calc(100vw - 4rem);
  left: 100vw;
  background-color: rgba(255,255,255,0.95);
  transition: 1s;
  text-align: center;
}

.bio {
  overflow: hidden;
  transition: 1s;
  text-align: left;
  padding-left: 2rem;
  padding-right: 2rem;
  color: black;
}

.bottone:hover{
  color: rgb(60, 170, 50);
  cursor: pointer;
}

#bio1 {
  max-height: 0%;
}
#bio2 {
  max-height: 0%;
}
#bio3 {
  max-height: 0%;
}
#bio4 {
  max-height: 0%;
}
#bio5 {
  max-height: 0%;
}
#bio6 {
  max-height: 0%;
}
#bio7 {
  max-height: 0%;
}
#bio8 {
  max-height: 0%;
}
#bio9 {
  max-height: 0%;
}
#bio10 {
  max-height: 0%;
}
#bio11 {
  max-height: 0%;
}
#bio12 {
  max-height: 0%;
}
#bio13 {
  max-height: 0%;
}
#bio14 {
  max-height: 0%;
}
#bio15 {
  max-height: 0%;
}
#bio16 {
  max-height: 0%;
}
#bio17 {
  max-height: 0%;
}
#bio18 {
  max-height: 0%;
}
#bio19 {
  max-height: 0%;
}
#bio20 {
  max-height: 0%;
}
















#archivio {
  position: fixed;
  overflow: scroll;
  padding-left: 5rem;
  padding-right: 5rem;
  z-index: 1;
  top: 0;
  height: 100vh;
  width: calc(100vw - 10rem);
  left: 100vw;
  background-color: rgba(255,255,255,0.95);
  transition: 1s;
  text-align: center;
}

.sottotitolo_edizione {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: Italic;
  letter-spacing: 0.1rem;
  font-size: 2.25rem;
  line-height: 2.5rem;
  color: rgb(60, 170, 50);
}

#edizione2021 {
  overflow: scroll;
  max-height: 0%;
  transition: 1s;
  margin-top: 1rem;
  margin-bottom: 4rem;
  border: solid 1px rgb(60, 170, 50);
  border-radius: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

#edizione2023 {
  overflow: scroll;
  max-height: 0%;
  transition: 1s;
  margin-top: 1rem;
  margin-bottom: 4rem;
  border: solid 1px rgb(60, 170, 50);
  border-radius: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

.scrolling-wrapper:hover {
  cursor: ew-resize;
}

.foto {
  display: inline-block;
  height: 40vw;
  width: auto;
}

.wrapper {
  display: inline-block;
}

#bio2021_1 {
  max-height: 0%;
}
#bio2021_2 {
  max-height: 0%;
}
#bio2021_3 {
  max-height: 0%;
}
#bio2021_4 {
  max-height: 0%;
}
#bio2021_5 {
  max-height: 0%;
}
#bio2021_6 {
  max-height: 0%;
}
#bio2021_7 {
  max-height: 0%;
}
#bio2021_8 {
  max-height: 0%;
}
#bio2021_9 {
  max-height: 0%;
}
#bio2021_10 {
  max-height: 0%;
}
#bio2021_11 {
  max-height: 0%;
}
#bio2021_12 {
  max-height: 0%;
}
#bio2021_13 {
  max-height: 0%;
}
#bio2021_14 {
  max-height: 0%;
}
#bio2021_15 {
  max-height: 0%;
}
#bio2021_16 {
  max-height: 0%;
}
#bio2021_17 {
  max-height: 0%;
}
#bio2021_18 {
  max-height: 0%;
}
#bio2021_19 {
  max-height: 0%;
}
#bio2021_20 {
  max-height: 0%;
}

.date_passate {
  letter-spacing: 0.05rem;
  margin-top: 0.5rem;
}

.download {
  position: relative;
  top: 2rem;
  bottom: 2rem;
  text-decoration: none;
  color: green;
}

.download:hover {
  color: black;
  cursor: pointer;
}















#info{
  position: fixed;
  overflow: scroll;
  padding-left: 2rem;
  padding-right: 2rem;
  z-index: 1;
  top: 0;
  height: 100vh;
  width: calc(100vw - 4rem);
  left: 100vw;
  background-color: rgba(255,255,255,0.95);
  transition: 1s;
  text-align: center;
}

.footer {
  height: 20vh;
}

.loghi {
  position: relative;
  height: 4rem;
  width: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
}

.loghi_g {
  position: relative;
  height: 7rem;
  width: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
}

.loghi_m {
  position: relative;
  height: 5.5rem;
  width: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
}

.social {
  text-decoration: none;
  color: black;
  text-decoration-line: underline;
}

















#eventi {
  position: fixed;
  overflow: scroll;
  padding-left: 2rem;
  padding-right: 2rem;
  z-index: 1;
  top: 0;
  height: 100vh;
  width: calc(100vw - 4rem);
  left: 100vw;
  background-color: rgba(255,255,255,0.95);
  transition: 1s;
  text-align: center;
}

.evento {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
  border-top: solid 2px rgb(60, 170, 50);
}

.data_evento {
  color: rgb(60, 170, 50);
}

.descr_evento {
  padding-top: 0.5rem;
  text-align: left;
  padding-left: 2rem;
  padding-right: 2rem;
}

















@media screen and (max-width: 1100px) {

  .bottoni_home {
    margin-top: 12vh;
  }

  .bottone_bando {
    font-size: 3.2rem;
    line-height: 3.5rem;
  }

  .descrizione {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .logo {
    width: 80%;
  }

  .vernissage {
    width: 60vw;
    left: 20vw;
  }

  .menu1 {
    bottom: 40vh;
  }

  .menu2 {
    bottom: 22vh;
  }

  .bio {
    font-size: 3rem;
    line-height: 3.5rem;
  }

  .foto {
    height: 60vw;
  }

  .loghi {
    height: 5rem;
  }

  .loghi_g {
    height: 9rem;
  }

  .loghi_m {
    height: 6rem;
  }

  @keyframes menu1 {
    0%{
      transform: rotate(-20deg);
      letter-spacing: -0.1rem;
    }
    25%{
      transform: rotate(0deg);
      letter-spacing: -0.1rem;
    }
    50%{
      transform: rotate(0deg);
      letter-spacing: 2rem;
    }
    75%{
      transform: rotate(-20deg);
      letter-spacing: 2rem;
    }
    100%{
      transform: rotate(-20deg);
      letter-spacing: -0.1rem;
    }
  }

  @keyframes menu2 {
    0%{
      transform: rotate(0deg);
      letter-spacing: 2rem;
    }
    25%{
      transform: rotate(-20deg);
      letter-spacing: 2rem;
    }
    50%{
      transform: rotate(-20deg);
      letter-spacing: -0.1rem;
    }
    75%{
      transform: rotate(0deg);
      letter-spacing: -0.1rem;
    }
    100%{
      transform: rotate(0deg);
      letter-spacing: 2rem;
    }
  }

  @keyframes menu3 {
    0%{
      letter-spacing: -0.1rem;
    }
    25%{
      letter-spacing: -0.1rem;
    }
    50%{
      letter-spacing: 1rem;
    }
    75%{
      letter-spacing: 1rem;
    }
    100%{
      letter-spacing: -0.1rem;
    }
  }

}
