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

body,h1,h2,h3,h4,p,ul[class],ol[class],li,figure,figcaption,blockquote,dl,dd{
  margin:0;
}

html {
  background: radial-gradient(rgba(52, 119, 198, 1), rgba(0, 46, 94, 1));
}

.page {
  width: 60vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  /* overflow: hidden; */
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  padding: 2% 0;
}
.page-final {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  padding: 20px;
}
.page-final > .content > img {
  max-height: 70%;
}
.hidden {
  display: none;
}

.header {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.header > img {
  max-width: 30%;
}

.content {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.content > img {
  max-width: 70%;
}

.register {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.register > img {
  max-width: 40%;
}
.register > img:hover {
  cursor: pointer;
}

.pictures {
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
  z-index: 1;
  position: relative;
  top: 0;
  left: 0;
}
.roulette {
  position: absolute;
  bottom: 0;
  right: -10%;
  height: 100%;
}
.roulette-spin {
  rotate: 15turn;
  transition: 5s ease-in-out;
}
.hand {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 20%;
}
.disappear {
  opacity: 0%;
  transition:.5s ease-in-out;
}
.chip-1 {
  position: absolute;
  top: 10%;
  left: 7%;
  max-width: 6%;
}
.chip-2 {
  position: absolute;
  bottom: 0;
  /* left: 10%; */
  max-width: 100%;
}
.chip-3 {
  position: absolute;
  right: 0;
  max-height: 70%;
}
.chip-4 {
  position: absolute;
  top: 10%;
  left: 40%;
  max-height: 80%;
}
.bullets {
  position: absolute;
  bottom: 0;
  left: 0;
}



.cookies__content{
  transition:all .3s;
  opacity:0;
  visibility:hidden;
  position:fixed;
  bottom:0;
  left:0;
  padding:8px 15px;
  width:100vw;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:500;
  background:#002f5e;
  color:#fff;
  font-size:12px
}
.cookies__content.active{
  transition:all .3s;
  opacity:1;
  visibility:visible
}
.cookies__items{
  display:flex;
  justify-content:center;
  align-items:flex-end
}
.cookies__item1{
  margin-right:10px
}
.cookies__item2{
  transition:all .3s;
  font-weight:500;
  border-bottom:2px solid #fff;
  line-height:1;
  cursor:pointer
}

@media(max-width: 480px){
  .page {
    width: 100vh;
  }
  .page-final {
    justify-content: center;
  }
  .header > img {
    max-width: 80%;
  }
  .content {
    height: 50%;
  }
  .content > img {
    max-width: 90%;
  }
  .register > img {
    max-width: 80%;
  }
  .roulette {
    height: 50%;
  }
  .hand {
    right: 20%;
    width: 50%;
  }
  .chip-1 {
    max-width: 15%;
  }
  .chip-3 {
    width: 100%;
  }
  .chip-4 {
    height: 100%;
  }
  .bullets {
    left: -30%;
  }
}