@font-face {
    font-family: thisfont;
    src: url(./fonts/animeace2_bld.ttf);
}

@keyframes rotaion {
    0% {
    transform: rotate(0deg) translateY(0px);
    }
    25% {
        transform: rotate(3deg) translateY(-2px);
    }
    50% {
        transform: rotate(0deg) translateY(0px);
    }
    75% {
        transform: rotate(-3deg) translateY(-2px);
    }
    100% {
        transform: rotate(0deg) translateY(0px);
    }
}

@keyframes float {
    0% {
    transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
}
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Burger styles */
.mobilenav{
    display: none;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    padding: 0 10px;
    width: 90%;
    /* background-color: #00ac3f; */
}
.mobilenav img{
    max-width: 100px;
}
.burger {   
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.nav-menu.active {
  display: flex;
}
.nav-menu.show {
  display: flex;
  animation-name: slideDown;
}

.nav-menu.hide {
  animation-name: slideUp;
}

/* Menu styles */
.nav-menu {
  display: none;
  gap: 20px;
    animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.navbuttongroupe,
.navsocials,
.navspecialbuttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Responsive rules */
@media (max-width: 1250px) {
  .mobilenav {
    display: flex;
  }


  .nav-menu {
    display: none;
    position: fixed;
    left: 0;
    flex-direction: column;
    background-color: #00ac3f;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    z-index: 10;
    /* padding: 20px 0; */
    gap: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .navbuttongroupe,
  .navspecialbuttons {
    flex-direction: column;
    gap: 15px;
  }
  .navsocials{
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
  .navbuttongroupe a {
    color: white;
  }

  .navspecialbuttons a{
    font-size: 16px;
    min-width: 90%;
  }

  .navbar{
    display: none !important;
  }

  .socialrow {
    align-items: center;
    justify-content: center;
    max-width: 90% !important;
    gap: 10px;
}

}

html,body{
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

*{
    text-transform: uppercase;
    font-family: thisfont;
}
section{
    width: 100%;
    display: flex;
}
.flexbox{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.land{
    padding-top: 100px;
}
h1{
    color: white;
    margin: 0;
    font-size: 5rem;
    width: 100%;
    text-align: center;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    text-shadow: 4px 4px 0px #000000;
    line-height: 1.1;
}

.navbar{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;   
    position: fixed;
    top: 0;
    z-index: 20;
    padding: 20px 0;
}
.logo{
    max-width: 100px;
}
.navlinkscontainer{

    border: 2px solid black;
    border-radius: 6px;
    background-color: white;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 12px;
}

.navlinkscontainer a{
    color: black;
    font-size: 19px;
    text-decoration: none;
    transition: color 0.3s ease-in ;
}
.navlinkscontainer a:hover{
    color:#9e3d12 ;
}




.landing{
    position: relative;
    min-height: 100vh;
    align-items: center;
    justify-content: center;

    background-image: url(./assets/bg1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-bottom: 6px black solid;
    
}

.titleholder{
    width: 800px;
    max-width: 90%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
;

}
.title1{
    max-width: 100%;
    transform: rotate(-3deg);

}
.title2{
    max-width: 30%;
    transform: rotate(-3deg);
    animation: rotaion 1.8s ease-in-out infinite;
}

.landingimg{
    width: 650px;
    max-width: 50%;
}

.about{

    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-image: url(./assets/bg2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    gap: 40px;

    padding: 100px 0;
    
    border-top: 6px rgb(100, 100, 100) solid;

    border-bottom: 6px black solid
}
.about .flexbox{
    flex: 1;
    gap: 30px;
}
.aboutimg,.textcontainer{
    flex: 1;
}
.aboutimg img{
    max-width: 100%;
}
.textcontainer{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.textcontainer p{
    font-size: 19px;
}
.textcontainer a{
    color: black;
    text-decoration: none;
    border-style: solid;
    border-color: #000000;
    border-width: 2px 4px 4px 2px;
    border-radius: 5px;
    background-color: white;
    padding: 7px 14px;
}

.tokenomics{

    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;

    background-image: url(./assets/bg3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    gap: 40px;

    padding: 100px 0 0 0;

    border-top: 6px rgb(100, 100, 100) solid;

    border-bottom: 6px black solid

}
.tokenomics .flexbox{
    gap: 40px;

}
.flexbox .tokeleft,.flexbox .tokeright{
    flex: 1;
}
.tokeleft img,.tokeright img{
    width: 100%;
}
.tokeright{
    display: flex;
    align-items: flex-end;
}

.answers{
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-image: url(./assets/bg4.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    gap: 40px;

    padding: 100px 0;
    border-top: 6px rgb(100, 100, 100) solid;

    border-bottom: 6px black solid
}
.flexbox .answersbox,.flexbox .qaimg{
    flex: 1;
}
.qaimg{
    display: flex;
    align-items: center;
    justify-content: center;
}
.qaimg img{
    width: 100%;
}
.answersbox{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.answerrow{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    gap: 20px;

}
.answer{
    border-style: solid;
    border-color: #000000;
    border-width: 2px 6px 6px 2px;
    border-radius: 5px;
    background-color: white;
    padding: 7px 14px;
    border-radius: 7px;
}
.answer h2{
    font-size: 19px;
    text-align: center;
}
.answer p{
    font-size: 14px;
    text-align: center;
}

.footer{
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-image: url(./assets/bg5.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}
.flexbox .left,.flexbox .right{
    flex: 1;
}
.footerimg{
    max-width: 90%;
}
.floating{
    width: 450px;
    max-width: 90%;
    animation: float 3s ease-in-out infinite;
}
.right,.left{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.socialrow{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 60%;
    gap: 10px;
}
.socialbox{
    flex: 1;
    background-color: white;
    border-style: solid;
    border-color: #000000;
    border-width: 2px 6px 6px 2px;
    border-radius: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 3px;
}
.socialbox img{
    max-width: 90%;
}

@media only screen and (max-width: 1000px) {
    .flexbox.land{
        flex-direction: column;
    }
    .landingimg {
        width: 650px;
        max-width: 69%;
    }
    h1 {
        font-size: 3.5rem;
    }
    .about .flexbox{
        flex-direction: column;
    }
    .textcontainer {
        align-items: center;
        text-align: center;
    }
    .answers .flexbox{
        flex-direction: column;
    }
    .qaimg img {
    width: 80%;
}
}

@media only screen and (max-width: 550px) {
    h1 {
    font-size: 2.5rem;
    }
    .footer .flexbox{
        flex-direction: column;
    }
    .footerimg{
        display: none;
    }
    .footer{
        padding: 50px 0;
    }
}