@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;700&family=Bodoni+Moda:opsz,wght@6..96,400;6..96,500;6..96,600&family=Great+Vibes&family=Inter:wght@300;400;500;600;700;800&family=Libre+Bodoni:wght@400;500;600;700&family=PT+Serif:wght@400;700&family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Public+Sans:ital,wght@0,200;0,300;0,400;0,500;0,700;1,400&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rancho&family=Roboto+Condensed:wght@400;700&family=Roboto+Mono:wght@300;400&family=Roboto:wght@500&family=Staatliches&family=Yeseva+One&display=swap');
@font-face{
    src: url(VECTOR_REGULAR_TTF.ttf);
    font-family: Vector;
}
@font-face{
    src: url(Blackpast.otf);
    font-family: blackpast;
}
::root{
    --bs-navbar-toggler-icon-bg-1:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2858, 78, 213, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
*{
    margin: 0;
    padding: 0;
}
body{
    width: 100%;
    background: #000;
    display: flex;
    /* overflow: hidden; */
    flex-direction: column;
    height:fit-content;
   
}
.dragon{
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.dragon .dragon-img-box{
    height: clamp(20rem,40dvh,30rem);
    display: flex;
    justify-content: center;
    padding: 1rem 1rem;
    align-items: center;
    overflow: hidden;
    width:clamp(20rem,40dvh,30rem);
}
.dragon-img {
    width: 100%;
    
    object-fit: contain;
        max-width: 100%;
        /* height: 100dvh; */
        z-index: 10;
       
        aspect-ratio: 1/1;
}
.dragon .dragon-text-box{
    height: fit-content;
    padding: 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}
.text-box-h2{
    color: #2a2a2a;
    text-align: center;
    font-size: 2rem;
    font-family: Vector;
}
.text-box-main{
    color: gray;
    text-align: center;
    font-size: 0.8rem;
    font-family: 'Poppins',sans-serif;

}
.text-box-btn{
    height: 2.5rem;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: linear-gradient(to left,#db2777,#f59e0b);
    color: #fff;
    font-family: 'Poppins',sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    width: fit-content;
}
.box-btn-txt{
    z-index: 1;
}
.text-box-btn::before{
    content: '';
    background: #2a2a2a;
    position: absolute;
    left: 0;
    z-index: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transition: transform .4s ease;
}
.text-box-btn:hover::before{
    transform: scaleX(1);
}

@media only screen and (min-width: 768px) and (max-width: 991px){
  
}

@media  screen and (max-width:767px) {
  
}
