*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: normal;
    src: url(normal.woff2);
}

body{
    background-color: rgb(25 36 46);
    font-family: normal;
}

.container{
    padding-inline: 100px;
}

.box{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.box img{
    width: 70px;
    border-radius: 100px;
    cursor: pointer;
    background-color: none;
}

.btn{
    border-radius: 100px;
    background-color: rgb(25 36 46);
    border: none;
    margin: 20px;
}

.btn:hover{
    transform: scale(1.1);
    transition: 2s;
}

.btn h4{
    color: rgb(199 242 132);
    cursor: pointer;
}

#header{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#header img{
    width: 40px;
    border-radius: 100px;
}

#dapp h2{
    display: flex;
    justify-content: center;
    color: rgb(199 242 132);
    font-size: 26px;
    margin-bottom: 10px;
}

#dapp p{
    display: flex;
    justify-content: center;
    color: rgb(199 242 132);
    margin-bottom: 10px;
}

a{
    text-decoration: none;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    max-width: 500px;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 800;
}

form {
    width: 100%;
    margin: auto;
}

label {
    text-align: left;
}

textarea {
    border: 1px solid rgba(138, 138, 160, 0.3);
    outline: 0;
    box-sizing: border-box;
    height: 150px;
    box-shadow: none;
    font-size: 16px;
    line-height: 28px;
    border-radius: 4px;
    padding: 13px 15px;
    width: 100%;
    background: transparent;
    color: black;
}

.button1 {
    background: blue;
    color: white;
    padding: 16px 60px;
    border: none;
    font-weight: 700;
    border-radius: 34px;
    width: 60%;
    margin: 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.button1:hover {
    background: darkblue;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.error {
    color: red;
    font-size: 14px;
}

.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.barcode {
    width: 200px;
    height: 200px;
    border-radius: 0;
}

.success-content {
    background:white;
    max-width: 500px;
    max-height: 300px;
    height: 100%;
    width: 100%;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    color: red;
}



@media (max-width:500px) {
    
    .wallet{
        display: flex;
    }
    .wallet-grid {
        gap: 14px;
    }
    .container{
        padding-inline: 20px;
        display: flex;
        justify-content: center;
    }
    #dapp p{
        text-align: center;
    }
    .box{
        grid-template-columns: repeat(3, 1fr);
    }
}

  


    