@import url(./reset.css);
body{
    font-family: "Bangers", system-ui;
}
.header {
    position: relative;
    overflow: hidden;
    height: 100vh;
}
.beckgr-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;


}
.bg-ing {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header-logo {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    border-radius: 40px;
    padding-right: 5px;
}
.title {
    font-size: 25px;
    color: hsl(34, 44%, 58%) ;
}
.title-span{
    color:#fff;
}
.header-navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 0px 40px;
}
.nav {
    position: relative;
    z-index: 1;
}
.menu {
   display: flex;
   justify-content: space-between;
   align-items: center; 
   gap: 20px;
}
.menu-list {
   
}
.bi {
}
.bi-twitter-x {
}
.menu-link {
    color: #fff;
}
.bi-telegram {
}
.bi-capsule {
}
.bi-upc-scan {
}
.header-content {
    position: relative;
        z-index: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        margin-top: 240px;
}
.content-blockchain {
    display: flex;
    align-items: center;
  
}
.sui-chain {
    position: relative;
    z-index: 0;
    padding: 10px 200px;
    background-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 18px;
    border-radius: 20px;

}
.sui-logo{
    position: absolute;
    z-index: 1;
    
}
.chein-text{
    margin-top: 70px;
   
}
.content-text {
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding-bottom: 10px;
}
.content-link {
}
.run-block {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;

    
}
.run-block div{
animation: running-text 13s linear infinite ;
}
.run-text {
   display: inline-block;
    padding: 15px 15px 25px 15px;
    color: #fff;
    text-align: center;
    font-size: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@keyframes running-text {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}