@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');
body{
    background-color: #0b0b13;
    font-family: 'Inter', sans-serif;
    margin: 0;
}


h1{
    color: #d66ecb;
    text-align: left;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
 
}
nav{
    display: flex;
    justify-content: space-between;
    padding: 25px;
    
}
.menu{
    display: none;
}
main{
    display: grid;
}
.nav-items{
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-items a{
    text-decoration: none;
    color: #9c9c9e;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    position: relative;
    bottom: 10px;
    right: 190px;

}

.nav-buttons{
    display: flex;
    gap: 26px;
}

.brand{
    display: flex;
    color: white;
    gap: 6px;
}


.connect-btn{
    background-color: #202029;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height:21px;
    padding: 15px;
    border-radius: 7px;
    color: whitesmoke;
}
.connect-btn:hover{
    background-color: #9E5497;
}


.protocol{
    background-color: #16161e;
    padding:40px 20px;
    margin-top: 20px;
    overflow: none;
}

.boxes{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 30px;

}

.box{
    background-color: #0b0b13;
    padding: 14px;
    border-radius: 12px;
    height: 87px;
    width: 90%;
}

.box p{
    font-size: 14px;
    font-weight: 400;
    color: #aaaaaa;
}

.box h2{
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.two{
    display: flex;
}


.header{
    display: flex;
    justify-content: space-between;
}

.contents{
    display: grid;
    gap: 20px;
    
}

.content{
    background-color: #16161e;
    margin: 20px;
    border-radius: 12px;
    padding: 5px 25px;
    display: flex;
    justify-content: space-between;
}


.content p{
    font-size: 14px;
    font-weight: 400;
    color: #aaaaaa;
}

.content h2{
    font-size: 20px;
    font-weight: 600;
    color: white;
}

footer{
    display: flex;
    justify-content: space-between;
    padding: 20px;
}


.footer-links{
    display: flex;
    gap: 10px;
    font-size: 14px;
}

footer a{
    color:#aaaaaa;
    text-decoration: none;
}


.re{
    padding: 5px;
}
.mk{
    display: none;
}


.mk2{
    display: none;
}

.mk3{
    display: none;
}

.mk4{
    display: none;
}


.modal{
    position: fixed;
    top: 30%;
    left:37%;
    background-color: #18181f;
    padding: 15px;
    z-index: 22222;
    border-radius: 8px;
    width: 350px;
    display: none;
}


.overlay{
    background-color: rgba(71, 69, 69, 0.5);
    position: fixed;
    backdrop-filter: blur(5px);
    height: 100vh;
    width: 100%;
    z-index: 111;
    display: none;
}


.modal-header{
    display: flex;
    gap: 100px;
    border-bottom:1px solid rgb(40, 39, 39);
    margin: 0;
    width: 100%;
    justify-content: center;
}
.modal-header p{
    color: whitesmoke;
    position: relative;
    font-weight: 600;
    right: 40%;
}




.wallet{
    background-color: #202029;
    border-radius: 6px;
    padding: 5px;
    margin-top: 20px;
    display: flex;
    gap:20px;
  
}

@media(max-width:600px){

    body{
        overflow: none;
    }
    .nav-items{
        display: none;
    }



    .menu{
        display: inline-block;
        background: none;
        border: none;
    }

    .nav-buttons{
        display: none;
    }


    .boxes{
        display: flex;
        flex-direction: column;

    }


    .box{
        background-color: #0b0b13;
        padding-left: 20px 0px;
        border-radius: 12px;
        height: auto;
        width: 320px
    }


    .content{
        flex-direction: column;
        width:300px;
    }


    .header{
        display: flex;
        justify-content: left;
    }

    .boost{
        margin-top: 25px;
    }

    .twobtn{
        display: grid;
        gap: 14px;
    }

    .mk1{
        display: none;
    }

    .mk{
        display: block;
        height: 460px;
    }


    .mk2{
        display: block;
        height: 400px;
    }


    .mk3{
        display: block;
        height: 390px;
    }

    .mk4{
        display: block;
        height: 401px;
    }

    .re{
        padding: 130px;
    }



    .modal{
      left:4%;
 
    }
    
    

    footer{
        flex-direction: column;
        text-align: center;
    }
    .footer-links{
        display:flex;
      justify-content: center;
      align-items: center;

    }
}