@import url('https://fonts.googleapis.com/css2?family=Reggae+One&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  background-image: url('build/images/background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-color: rgb(147, 65, 65);
  /* position:absolute; */
  /* height: 1080px; */
  background-attachment: scroll;
  display: block;
   
  
}

/* .cabecalho {
  display: flex;
  flex-direction:row;
  align-items: center;
  justify-content: flex-end;
  padding: 30px;
  gap: 2%;
} */

.logo-mobile{
  display:none;
}

.logo-imagem {
  height: 16%;
  position: absolute;
  top: 2%;
  left: 46%;
  display: inline;
}

.logo-imagem:hover {
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 20px rgba(255, 255, 255, 0.4);
}

.cabecalho-menu {
  display: flex;
  position: fixed;
  padding-left: 74%;
  padding-top: 2%;
  gap: 40px;
  width: 100%;
}

.twitter-image{
  height: 65px;
  width: 65px;
  border-radius: 50%;
  box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
}

.opensea-image{
  height: 65px;
  width: 65px;
  border-radius: 50%;
  box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
}

.etherscan-image{
  height: 65px;
  width: 65px;
  border-radius: 50%;
  box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
   
}

.etherscan-white {
  height: 65px;
  width: 65px;
  background-color: #fff;
  color: #777;
  border-radius: 50%;
}

.cabecalho-menu-item-faq{
  top: 50%;
  right: 20%;
  z-index: 3;
  width: 25%;
}

@keyframes shake-animation {
  0% { transform:translate(0,0) }
 1.78571% { transform:translate(5px,0) }
 3.57143% { transform:translate(0,0) }
 5.35714% { transform:translate(5px,0) }
 7.14286% { transform:translate(0,0) }
 8.92857% { transform:translate(5px,0) }
 10.71429% { transform:translate(0,0) }
 100% { transform:translate(0,0) }
}

.faq-image{
  width: 17%;
  top: 49%;
  right: 1%;
  left: 82%;
  bottom: auto;
  position: absolute;
}

.faq-image:hover {
  
  border-radius: 55px;
  box-shadow: 0px 0px 10px 20px rgba(255, 255, 255, 0.4);
}

.faq-image:not(:active){
  animation: shake-animation 4.72s ease infinite;
}

.faq-image:active{
  transform: rotate(-10deg);
  box-shadow: 0 0px 0px 0px rgba(255, 255, 255, 0.4);
}



/* Buzz Out */
@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-buzz-out:hover, .hvr-buzz-out:focus, .hvr-buzz-out:active {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}



.mint-button{
  width: 10.5%;
  position: absolute;
  top: 79.3% ;
  left: 44.5%;
  
}

.mint-button:hover {
  transform: translateY(-15px);
  border-radius: 50%;
  box-shadow: 0 15px 10px 14px rgba(0, 0, 0, 0.5);
  
}

.mint-button:active{
  transform: translateY(-1px);
  box-shadow: 0 0px 15px 10px rgba(255, 166, 0, 0.842), 0 0px 15px 10px rgb(255, 0, 0);
}

@media screen and (min-width: 768px){
  body {
    background-attachment: fixed;
           
  }
  .logo-imagem {
    height: 14%;
    position: absolute;
    top: 2%;
    left: 44.5%;
    display: inline;
  }
  
  .logo-imagem:hover {
    display: inline-block;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 20px rgba(255, 255, 255, 0.4);
  }
  .cabecalho-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 1%;
    left:1%;
    margin-left: 13%;
    top: 8%;
    gap: 20px;
    
  }
  .twitter-image{
    height: 5%;
    width: 25%;
    border-radius: 50%;
    box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
  }
  
  .opensea-image{
    height: 2%;
    width: 25%;
    border-radius: 50%;
    box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
  }
  
  .etherscan-image{
    height: 2%;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
     
  }
  
  .etherscan-white {
    height: 2%;
    width: 25%;
    background-color: #fff;
    color: #777;
    border-radius: 50%;
  }

  .faq-image:hover {
  
    border-radius: 25px;
    box-shadow: 0px 0px 10px 20px rgba(255, 255, 255, 0.4);
  }

  .mint-button{
    width: 13.5%;
    position: absolute;
    top: 69.1% ;
    left: 43%;
    
  }
  
  .mint-button:hover {
    transform: translateY(-15px);
    border-radius: 50%;
    box-shadow: 0 15px 10px 14px rgba(0, 0, 0, 0.5);
    
  }
  
  .mint-button:active{
    transform: translateY(-1px);
    box-shadow: 0 0px 15px 10px rgba(255, 166, 0, 0.842), 0 0px 15px 10px rgb(255, 0, 0);
  }
}

@media screen and (min-width: 1024px){
  body {
    background-attachment: fixed;
           
  }
  .logo-imagem {
    height: 14%;
    position: absolute;
    top: 2%;
    left: 44.5%;
    display: inline;
  }
  
  .logo-imagem:hover {
    display: inline-block;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 20px rgba(255, 255, 255, 0.4);
  }
  .cabecalho-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 1%;
    left:1%;
    margin-left: 13%;
    top: 7%;
    gap: 30px;
    
  }

    
  .twitter-image{
    height: 65px;
    width: 65px;
    border-radius: 50%;
    box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
  }
  
  .opensea-image{
    height: 65px;
    width: 65px;
    border-radius: 50%;
    box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
  }
  
  .etherscan-image{
    height: 65px;
    width: 65px;
    border-radius: 50%;
    box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
     
  }
  
  .etherscan-white {
    height: 65px;
    width: 65px;
    background-color: #fff;
    color: #777;
    border-radius: 50%;
  }

  .faq-image{
    width: 200px;
    top: 49%;
    right: 1%;
    left: 77%;
    bottom: auto;
    position: absolute;
  }

  .faq-image:hover {
  
    border-radius: 30px;
    box-shadow: 0px 0px 10px 20px rgba(255, 255, 255, 0.4);
  }

  .mint-button{
    width: 138px;
    position: absolute;
    top: 69.1% ;
    left: 43%;
    
  }
  
  .mint-button:hover {
    transform: translateY(-15px);
    border-radius: 50%;
    box-shadow: 0 15px 10px 14px rgba(0, 0, 0, 0.5);
    
  }
  
  .mint-button:active{
    transform: translateY(-1px);
    box-shadow: 0 0px 15px 10px rgba(255, 166, 0, 0.842), 0 0px 15px 10px rgb(255, 0, 0);
  }
}

@media screen and (min-width: 1280px){
  body {
    background-attachment: fixed;
           
  }
  .logo-imagem {
    height: 15%;
    position: absolute;
    top: 2%;
    left: 45.5%;
    display: inline;
  }
  
  .logo-imagem:hover {
    display: inline-block;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 20px rgba(255, 255, 255, 0.4);
  }
  .cabecalho-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 1%;
    left:1%;
    margin-left: 13%;
    top: 10%;
    gap: 30px;
    
  }

    
  .twitter-image{
    height: 65px;
    width: 65px;
    border-radius: 50%;
    box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
  }
  
  .opensea-image{
    height: 65px;
    width: 65px;
    border-radius: 50%;
    box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
  }
  
  .etherscan-image{
    height: 65px;
    width: 65px;
    border-radius: 50%;
    box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
     
  }
  
  .etherscan-white {
    height: 65px;
    width: 65px;
    background-color: #fff;
    color: #777;
    border-radius: 50%;
  }

  .faq-image:hover {
  
    border-radius: 43px;
    box-shadow: 0px 0px 10px 20px rgba(255, 255, 255, 0.4);
  }

  .mint-button{
    width: 14.5%;
    position: absolute;
    top: 69.1% ;
    left: 42.5%;
    
  }
  
  .mint-button:hover {
    transform: translateY(-15px);
    border-radius: 50%;
    box-shadow: 0 15px 10px 14px rgba(0, 0, 0, 0.5);
    
  }
  
  .mint-button:active{
    transform: translateY(-1px);
    box-shadow: 0 0px 15px 10px rgba(255, 166, 0, 0.842), 0 0px 15px 10px rgb(255, 0, 0);
  }
}



@media screen and (min-width: 1440px){
  .cabecalho-menu {
    display: flex;
    flex-direction: row;
    position: fixed;
    padding-left: 65%;
    top: 5%;
    gap: 40px;
    width: 100%;
  }
  .mint-button{
    width: 13.2%;
    position: absolute;
    top: 69.1% ;  
    left: 43.2%;
    
  }

  .faq-image{
    width: 17%;
    top: 49%;
    right: 1%;
    left: 82%;
    bottom: auto;
    position: absolute;
  }

  .faq-image:hover {
  
    border-radius: 43px;
    box-shadow: 0px 0px 10px 20px rgba(255, 255, 255, 0.4);
  }
  
  .mint-button:hover {
    transform: translateY(-15px);
    border-radius: 50%;
    box-shadow: 0 15px 10px 14px rgba(0, 0, 0, 0.5);
    
  }
  
  .mint-button:active{
    transform: translateY(-1px);
    box-shadow: 0 0px 15px 10px rgba(255, 166, 0, 0.842), 0 0px 15px 10px rgb(255, 0, 0);
  }
}

@media screen and (min-width: 1920px){
  body {
    background-attachment: scroll;
           
  }
  .logo-imagem {
    height: 16%;
    position: absolute;
    top: 2%;
    left: 46%;
    display: inline;
  }

  .cabecalho-menu {
    display: flex;
    position: fixed;
    padding-left: 60%;
    top: 1%;
    gap: 50px;
    width: 100%;
  }

  .faq-image{
    width: 17%;
    top: 460px;
    right: 1%;
    left: 1580px;
    bottom: auto;
    position: fixed;
  }

  .faq-image:hover {
  
    border-radius: 57px;
    box-shadow: 0px 0px 10px 20px rgba(255, 255, 255, 0.4);
  }

  .mint-button{
    width: 10.5vw;
    position:absolute;
    top: 742px;
    left: 44.5%;
    
  }
  
  .mint-button:hover {
    transform: translateY(-15px);
    border-radius: 50%;
    box-shadow: 0 15px 10px 14px rgba(0, 0, 0, 0.5);
    
  }
  
  .mint-button:active{
    transform: translateY(-1px);
    box-shadow: 0 0px 15px 10px rgba(255, 166, 0, 0.842), 0 0px 15px 10px rgb(255, 0, 0);
  }
}



@media(max-width: 450px){
  body {
    background-image: url('build/images/background-mobile.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top; 
    
    /* position:absolute; */
    /* height: 1080px; */
    background-attachment: fixed;
    display: inline-block;
    
    
    
  }

  /* .cabecalho {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 30px;
    
  } */
  .logo-imagem{
    display:none;
  }
  .logo-mobile {
    display: block;
    position: fixed;
    bottom: auto;
    left: 5%;
    top: 3%;
    right: 5%;
    height: 25%;
    width: 87%;
    
  }

  
  .cabecalho-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 1%;
    left:1%;
    margin-left: 5%;
    top: 28%;
    gap: 20px;
    
  }
  
  .twitter-image{
    height: 5%;
    width: 50%;
    border-radius: 50%;
    box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
  }
  
  .opensea-image{
    height: 5%;
    width: 50%;
    border-radius: 50%;
    box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
  }
  
  .etherscan-image{
    height: 5%;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0px 0px 5px rgb(255, 255, 255);
     
  }
  
  .etherscan-white {
    height: 5%;
    width: 50%;
    background-color: #fff;
    color: #777;
    border-radius: 50%;
  }
  

  .faq-image{
    width: 35%;
    height: 10%;
    top: 58%;
    right: 1%;
    left: 59%;
    margin-left: 1%;
    position: fixed;
  }
  
  .faq-image:hover {
    
    border-radius: 25px;
    box-shadow: 0px 0px 10px 10px rgba(255, 255, 255, 0.4);
  }
  
  .faq-image:not(:active){
    animation: shake-animation 4.72s ease infinite;
  }
  
  .faq-image:active{
    transform: rotate(-10deg);
    box-shadow: 0 0px 0px 0px rgba(255, 255, 255, 0.4);
  }

  .mint-button{
    
    /* height: 18%; */
    width: 36%;
    position: fixed;
    top: 69.2% ;
    left: 31%;
  
  }
  
  .mint-button:hover {
    transform: translateY(-15px);
    border-radius: 50%;
    box-shadow: 0 15px 10px 14px rgba(0, 0, 0, 0.5);
    
  }
  
  .mint-button:active{
    transform: translateY(-1px);
    box-shadow: 0 0px 15px 10px rgba(255, 166, 0, 0.842), 0 0px 15px 10px rgb(255, 0, 0);
  }

  .rodape {
    
    background-color:#000000;
    background-attachment: fixed;
    clear: both;
    position: relative;
    top: 622px;
    height: 100px;
    width: 100%;  
    margin: 0px auto;
    visibility: hidden;
  }
  
  .rodape-imagem{
    height: 70px;
    display: block;
    margin: -20px auto;
    visibility: hidden;
  }
  
}