* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} 

html {
  scroll-behavior: smooth;
}

.mirror_image {
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
}

.odor-mean-chey-regular {
  font-family: "Odor Mean Chey", serif;
  font-weight: 400;
  font-style: normal;
}

.patua_one {
  font-family: "Patua One", serif; 
}

body {
  font-family: "Odor Mean Chey", serif;
}

section{
    position: relative;
    width: 100%;

}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
} 

.text-shdow{
    text-shadow: 0vw .3vw 0 black;
    -webkit-text-stroke: .06vw black;
}

.box_shdow {
  box-shadow: 3px 3px 0px 0px #000000;
}

.box_shdow:hover{
    box-shadow: 0px 0px 0px 0px #000000;
}

.social_btn img{
    transition: .2s ease-out;
}

.social_btn:hover img{
    transform: rotate(360deg);
}
/* navbar */
 
/* menu button */
.menu-button {
  display: none;
  overflow: hidden;

  height: 35px;
  width: 45px;

  position: relative;

  align-items: center;
}

.menu-button span {
  width: 100%;
  height: 3px;
  background-color: rgb(0, 0, 0);
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.menu-button span:nth-child(1) {
  top: 0;
}

.menu-button span:nth-child(2) {
  position: relative;
}

.menu-button span:nth-child(3) {
  bottom: 0;
}

.menu-button.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 1rem;
}

.menu-button.active span:nth-child(2) {
  width: 0%;
}

.menu-button.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 1rem;
}

/* footer */
.nav-socials::before{
    content: "";

    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    z-index: 0;

    background-image: url('../image/bg-smoke.png');
    background-position: center 0%;
    background-size: cover;
    background-repeat: no-repeat;
    
    opacity: 0.3;
}

/* animation */
.float_animation {
  animation: float 8s ease-in-out infinite;
  -webkit-animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}

.rotating_btn {
  animation: button_animation 1s infinite alternate ease-in-out; 
}

@keyframes button_animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
 

.paper_animation {
  animation: paper_animation 12s ease-in-out infinite; 
}

@keyframes paper_animation {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(5deg); 
}
  100% {
    transform: rotate(-10deg);
  }
}

.tokenImg_animation {
  animation: tokenImg 13s ease-in-out infinite;
}

@keyframes tokenImg {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(3deg); }
  20%  { transform: rotate(5deg); }
  30%  { transform: rotate(3deg); }
  40%  { transform: rotate(0deg); }
  50%  { transform: rotate(-3deg); }
  60%  { transform: rotate(-5deg); }
  70%  { transform: rotate(-3deg); }
  80%  { transform: rotate(0deg); }
  90%  { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}

 
.bullet_animation {
  transform-origin: 50% 0px;
  animation: bullet_animation 3s infinite  ease-in;
}

@keyframes bullet_animation {
  0%   { opacity: 0.7; }
  25%  { opacity: 1; }
  50%  { opacity: 0.6; }
  75%  { opacity: 1; }
  100% { opacity: 0.8; }
}

.zoom_in {
  animation: zoom_in 20s infinite linear; 
}

@keyframes zoom_in {
  0%,
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  50% {
    transform: scale(1.1); 
  }
}

.smokeFall {
  animation: smokeFall 2s infinite ease-in-out;
}

@keyframes smokeFall {
  0% {
    transform: translateY(-200px) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  50% {
    transform: translateY(0px) rotate(180deg) scale(1);
    opacity: 0.7;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(200px) rotate(360deg) scale(1.2);
    opacity: 0;
  }
}


/* media queries */
@media screen and (min-width: 1025px) {
  .menu_drop {
    display: none;
    opacity: 0;
    z-index: -111;
    right: -200%;
  }
}

@media screen and (max-width: 1024px) {
  .menu-button {
    display: flex;
    position: absolute;
    right: 0;
  }
}

@media screen and (max-width: 500px) {
  .menu-button {
    width: 27px;
    height: 23px;
  }

  .menu-button.active span:nth-child(1) {
    top: 0.6rem;
  }

  .menu-button.active span:nth-child(3) {
    bottom: 0.7rem;
  }

  .marquee span {
    font-size: 34px;
  }

  .cloud_animation {
    animation: cloud 49s ease-in-out infinite;
  }

  .cloud_animation_reverse {
    animation: cloud_reverse 49s ease-in-out infinite;
  }
}
