@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Unbounded:wght@200;300;400;500;600;700;800;900&display=swap);
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

**,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  overflow-y: hidden;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Montserrat";
}

br {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-selection { /* Code for Firefox */
  -webkit-text-fill-color: #000000;
  color: #000000;
  background: rgba(255, 255, 255, 0.3764705882);
}

::selection {
  -webkit-text-fill-color: #000000;
  color: #000000;
  background: rgba(255, 255, 255, 0.6666666667);
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 20px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 5;
}

nav .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 60%;
  transition: 0.3s;
  cursor: pointer;
}

nav .logo img {
  width: 80px;
}

nav .logo:hover {
  opacity: 100%;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2509803922));
}

nav ul {
  display: flex;
  justify-content: space-around;
  width: 40%;
}

nav ul li {
  cursor: pointer;
}

nav ul li a {
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.5647058824);
  transition: 0.3s;
  font-size: 16px;
  cursor: pointer;
}

nav ul li:hover a {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2509803922);
}

.credits {
  width: 100px;
  height: 30px;
  font-size: 2vw;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: 0.5s;
  background: none;
  color: rgba(255, 255, 255, 0.5647058824);
  background: rgba(255, 255, 255, 0.0196078431);
  font-size: 16px;
  cursor: pointer;
}

.credits:hover {
  background: rgba(255, 255, 255, 0.062745098);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2509803922);
}

.blackWall {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3137254902);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  width: 100%;
  height: 100vh;
  display: none;
  transition: 0.3s;
  opacity: 0;
  z-index: 5;
}

.creditsWindow {
  background-image: linear-gradient(rgba(0, 0, 0, 0.062745098), rgba(0, 0, 0, 0.0196078431));
  border-radius: 20px;
  height: 70vh;
  min-width: 60%;
  max-width: 80%;
  border: 1px solid rgba(255, 255, 255, 0.5647058824);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  position: fixed;
  top: 50%;
  left: 50%;
  transition: 0.5s;
  transform: translate(100%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  z-index: 6;
}
.creditsWindow #creditsTitle {
  font-size: 2em;
  color: #ffffff;
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  font-weight: 900;
}
.creditsWindow p {
  font-size: 2.5vh;
  color: #ffffff;
  text-align: center;
}

.first {
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  flex-direction: column;
}

.first .gradient {
  position: absolute;
  width: 800px;
  filter: hue-rotate(140deg) blur(150px);
  opacity: 80%;
  z-index: 2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.first .images {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100vh;
  margin-bottom: 100px;
}

.first .images img {
  width: 800px;
  opacity: 60%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.first h1 {
  font-size: 100px;
  background-image: linear-gradient(75deg, #2aff38, #fff132, #ff0000);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: #ffffff;
  z-index: 3;
  text-align: center;
  font-style: italic;
  line-height: 120px;
  position: relative;
  width: 80%;
  bottom: 40px;
}

.first h1 span {
  background-clip: none;
  -webkit-text-fill-color: transparent;
  color: rgba(255, 255, 255, 0.6274509804);
  font-weight: 900;
  font-style: normal;
  font-size: 130px;
}

.first p {
  z-index: 3;
  position: relative;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3764705882);
  width: 40%;
  text-align: center;
  padding: 20px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 10px;
  bottom: 40px;
}

.first .vaigiu {
  bottom: 20px;
  position: relative;
  width: 150px;
  height: 60px;
  background: rgba(255, 255, 255, 0.062745098);
  color: rgba(255, 255, 255, 0.3764705882);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 25px;
  z-index: 4;
  transition: 0.3s;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.first .vaigiu i {
  margin-left: 5px;
}

.first .vaigiu:hover {
  background: rgba(255, 255, 255, 0.1254901961);
  color: #ffffff;
}

.sezione {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding: 30px;
  padding-left: 0;
  padding-right: 0;
  align-items: center;
  z-index: 3;
  flex-direction: column;
}
.sezione h1 {
  font-size: 40px;
  color: #ffffff;
}
.sezione .window {
  width: 80%;
  height: 80vh;
  border-radius: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: "Inter";
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.sezione .window h1 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  font-family: "Inter";
  z-index: 5;
  padding: 20px;
  position: relative;
  top: 20px;
}
.sezione .window p {
  margin-top: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6666666667);
  font-family: "Inter";
  z-index: 5;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 15px;
  border-radius: 10px;
  width: 60%;
}
.sezione .window p a {
  color: rgba(255, 255, 255, 0.6666666667);
  text-decoration: underline;
  transition: 0.3s;
}
.sezione .window p a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.sezione .window .br {
  display: none;
}
.sezione .window .br2 {
  display: none;
}
.sezione .window img {
  height: 550px;
  position: absolute;
  right: 15%;
  opacity: 70%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 4;
}
.sezione .window .fonti {
  color: rgba(255, 255, 255, 0.9333333333);
  font-weight: 800;
  z-index: 5;
  font-size: 16px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 20px;
  border-radius: 10px;
  margin-top: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  bottom: 20px;
}
.sezione .window .fonti a {
  position: relative;
  padding: 2px;
  padding-left: 5px;
  padding-right: 5px;
  background: rgba(255, 255, 255, 0.1254901961);
  font-weight: 400;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.5019607843);
  top: 5px;
  transition: 0.3s;
  line-height: 3vh;
  width: 20%;
}
.sezione .window .fonti a:hover {
  background: rgba(255, 255, 255, 0.2078431373);
  color: #ffffff;
  text-decoration: underline;
}

.storia {
  margin-top: 30vh;
}
.storia .window {
  background-image: linear-gradient(115deg, #fc6f6f, #8d1436, #4c1848);
}

.crazytime .window {
  background-image: linear-gradient(115deg, #5ecf8b, #148d32, #073c05);
  height: 70vh;
}
.crazytime .window img {
  height: 450px;
  opacity: 50%;
  right: 10%;
}

.wheel .window {
  background-image: linear-gradient(115deg, #ffa7a7, #9210a8, #1d184c);
}

.probabilita .window {
  background-image: linear-gradient(115deg, #a7a8ff, #1045a8, #020c3c);
}

.ludopatia .window {
  background-image: linear-gradient(115deg, #f6b882, #a86910, #301700);
}

canvas {
  max-width: 500px;
  max-height: 500px;
  border: transparent;
  border-radius: 50px;
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 50%;
  background: #ffffff;
  transform: translateX(-50%);
  border: 2px solid rgba(255, 255, 255, 0.5019607843);
}

@media screen and (max-width: 1450px) {
  .first h1 {
    font-size: 90px;
  }
  .first h1 span {
    font-size: 110px;
  }
}
@media screen and (max-width: 1180px) {
  nav ul {
    display: none;
  }
  .first .images img {
    margin-bottom: 200px;
    width: 400px;
  }
  .sezione .window p {
    font-size: 15px;
  }
  .sezione .window .fonti {
    font-size: 15px;
  }
  .first h1 {
    font-size: 80px;
    line-height: 100px;
  }
  .first h1 span {
    font-size: 90px;
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .sezione .window p {
    font-size: 14px;
    width: 100%;
  }
  .sezione .window img {
    height: 300px;
    opacity: 50%;
    left: 50%;
    transform: translateX(-50%);
  }
  .sezione .window .fonti {
    font-size: 14px;
  }
}
@media screen and (max-width: 910px) {
  .sezione .window p {
    font-size: 12px;
    width: 100%;
  }
  .sezione .window img {
    opacity: 50%;
  }
  .sezione .window .fonti {
    font-size: 12px;
  }
  .first h1 {
    font-size: 80px;
    line-height: 100px;
  }
  .first h1 span {
    font-size: 100px;
  }
  .first p {
    font-size: 16px;
  }
}
@media screen and (max-width: 810px) {
  .sezione .window {
    height: 85vh;
  }
  .sezione .window .br {
    display: block;
  }
  .sezione .window .br1 {
    display: none;
  }
  .sezione .window .br2 {
    display: block;
  }
  .sezione .window img {
    opacity: 30%;
  }
  .btn {
    bottom: 0;
  }
  .first p {
    font-size: 16px;
    width: 70%;
  }
}
@media screen and (max-width: 710px) {
  .sezione .window .fonti a {
    font-size: 11px;
  }
  .first h1 {
    font-size: 30px;
    line-height: 50px;
  }
  .first h1 span {
    font-size: 14vw;
  }
  iframe {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 620px) {
  .sezione .window {
    height: 85vh;
  }
  .sezione .window p {
    font-size: 11px;
  }
  .sezione .window .fonti a {
    font-size: 10px;
  }
  .sezione .window .fonti .br1 {
    display: block;
  }
  .sezione .window .fonti .br2 {
    display: none;
  }
  iframe {
    transform: scale(0.5);
  }
}
.returnBtn {
  position: fixed;
  bottom: 20px;
  right: -200px;
  width: 130px;
  background: rgba(255, 255, 255, 0.062745098);
  color: rgba(255, 255, 255, 0.3764705882);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.returnBtn i {
  margin-left: 5px;
}

.returnBtn:hover {
  background: rgba(255, 255, 255, 0.1254901961);
  color: #ffffff;
}

iframe {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}/*# sourceMappingURL=style.css.map */